92 lines
2.1 KiB
HTML
92 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="description" content="Brief description of page.">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Title.</title>
|
|
<link rel="stylesheet" href="style/main.css">
|
|
<script src="script/debug.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header id="debug">
|
|
</header>
|
|
|
|
<header>
|
|
<img src="images/logo.svg" alt="Logo of the website.">
|
|
<nav aria-label="Main navigation">
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="some.html">Some</a></li>
|
|
<li><a href="other.html">Other</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<!-- Comment. -->
|
|
<h1>This is some long 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>
|
|
|
|
|
|
<div class="columns">
|
|
<div>
|
|
First column to describe the associated
|
|
image of a debian landscape debanner.
|
|
</div>
|
|
<div>
|
|
<img src="images/debanner.jpeg" alt="Debian banner.">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="wrapper">
|
|
|
|
<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>
|
|
|
|
<section>
|
|
<h2>Yet Another Heading</h2>
|
|
<h3>Sub Heading</h3>
|
|
<p>
|
|
0________1_________2_________3_________4<br>
|
|
Yet another paragraph that is quite a bit longer than others.
|
|
</p>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
Footer.
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|