54 lines
998 B
HTML
54 lines
998 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="index.css">
|
|
<title>Title.</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
Header.
|
|
<img src="images/logo.svg" alt="Logo of the website.">
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<!-- Comment. -->
|
|
<h1>Root heading</h1>
|
|
|
|
<div class="sectionless">
|
|
<p><span class="thing">It</span> is <strong>important</strong>.</p>
|
|
<p>Oh yeah, <em>sure</em>…</p>
|
|
</div>
|
|
|
|
<a href="relative/destination">Go elsewhere…</a>
|
|
|
|
<section>
|
|
<h2>A Heading</h2>
|
|
<ol>Ordered:
|
|
<li>Some item</li>
|
|
<li>Another item</li>
|
|
</ol>
|
|
<p>Another paragraph.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2><span class="thing">Another</span> Heading</h2>
|
|
<ul>Unordered:
|
|
<li>Some item</li>
|
|
<li>Another item</li>
|
|
</ul>
|
|
<time>Time.</time>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
Footer.
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|