33 lines
430 B
HTML
33 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Title.</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Comment. -->
|
|
<h1>Root heading</h1>
|
|
|
|
<p>A paragraph.</p>
|
|
|
|
<h2>A Heading</h2>
|
|
<ol>Ordered:
|
|
<li>Some item</li>
|
|
<li>Another item</li>
|
|
</ol>
|
|
<p>Another paragraph.</p>
|
|
|
|
<h2>Another Heading</h2>
|
|
<ul>Unordered:
|
|
<li>Some item</li>
|
|
<li>Another item</li>
|
|
</ul>
|
|
<time>Time.</time>
|
|
|
|
<footer>Footer.</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|