<!DOCTTYPE html>The rendered document on the browser should look like this:
<!--Example 1: Lists.html -->
<html>
<head>
<title> This is an example showing horizontal rule and unordered/ordered lists </title>
</head>
<body>
<h1> List of daily activities</h1>
<!-- A horizontal rule is created -->
<hr>
<!-- Unordered list is created -->
<ul>
<li> Healthy breakfast </li>
<li> Light physical exercise </li>
<li> Study the following subjects </li>
<!-- Ordered list is created -->
<ol>
<li> IT </li>
<li> Chemistry </li>
<li> Biology </li>
</ol>
</ul>
</body>
</html>