50 lines
733 B
HTML
50 lines
733 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Title.</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
Header.
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<!-- Comment. -->
|
|
<h1>Root heading</h1>
|
|
|
|
<p>It is <strong>important</strong>.</p>
|
|
<p>Oh yeah, <em>sure</em>…</p>
|
|
|
|
<section>
|
|
<h2>A Heading</h2>
|
|
<ol>Ordered:
|
|
<li>Some item</li>
|
|
<li>Another item</li>
|
|
</ol>
|
|
<p>Another paragraph.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Another Heading</h2>
|
|
<ul>Unordered:
|
|
<li>Some item</li>
|
|
<li>Another item</li>
|
|
</ul>
|
|
<time>Time.</time>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
Footer.
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|