You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>Welcome to my Homepage</title>
</head>
<body>
Heading
<h1>This
<h2>This
<h3>This
<h4>This
<h5>This
<h6>This

is
is
is
is
is
is

Heading
Heading
Heading
Heading
Heading
Heading

1</h1>
2</h2>
3</h3>
4</h4>
5</h5>
6</h6>

<h1>List</h1>
<h2>Order list</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Mineral Water</li>
</ol>
<ol style="list-style-type:lower-alpha">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Mineral Water</li>
</ol>
<h2>Unorder List</h2>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Mineral Water</li>
</ul>
<ul style="list-style-type:square">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Mineral Water</li>
</ul>
</body>
</html>

You might also like