30 lines
No EOL
457 B
HTML
30 lines
No EOL
457 B
HTML
<html>
|
|
<head>
|
|
<title>Title</title>
|
|
<style type="text/css">
|
|
h1 {
|
|
width: 50px;
|
|
color:red;
|
|
}
|
|
h2 {
|
|
vertical-align: top;
|
|
}
|
|
h3 {
|
|
text-align: right;
|
|
}
|
|
strong {
|
|
text-decoration:none
|
|
}
|
|
div {
|
|
background-color: green
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hi!</h1>
|
|
<h2>There</h2>
|
|
<h3>Hello</h3>
|
|
<p><strong>Yes!</strong></p>
|
|
<div>Green color</div>
|
|
</body>
|
|
</html> |