This commit is contained in:
Marc Beninca 2025-02-10 15:36:53 +01:00
parent 9899d4238e
commit 1da6b149a0
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,46 +1,49 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<head> <meta charset="UTF-8">
<meta charset="UTF-8"> <meta name="description" content="Brief description of page.">
<meta name="description" content="Brief description of page."> <meta name="keywords" content="keyword, wordkey">
<meta name="keywords" content="keyword, wordkey"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Title.</title>
<title>Title.</title> <link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="style/main.css"> <script defer src="script/debug.js"></script>
</head>
<body> </head>
<body>
<header id="debug"> <!-- headers -->
</header>
<header> <header id="debug">
<img src="images/logo.svg" alt="Logo of the website."> </header>
<nav aria-label="Main navigation">
<header>
<img src="images/logo.svg" alt="Logo of the website.">
<nav aria-label="Main navigation">
<ul> <ul>
<li><a href="index.html">Home</a></li> <li><a href="index.html">Home</a></li>
<li><a href="some.html">Some</a></li> <li><a href="some.html">Some</a></li>
<li><a href="other.html">Other</a></li> <li><a href="other.html">Other</a></li>
<li><a href="about.html">About</a></li> <li><a href="about.html">About</a></li>
</ul> </ul>
</nav> </nav>
</header> </header>
<main> <!-- main -->
<!-- Comment. --> <main>
<h1>This is some long root heading</h1> <!-- Comment. -->
<h1>This is some long root heading</h1>
<div class="sectionless"> <div class="sectionless">
<p><span class="thing">It</span> is <strong>important</strong>.</p> <p><span class="thing">It</span> is <strong>important</strong>.</p>
<p>Oh yeah, <em>sure</em></p> <p>Oh yeah, <em>sure</em></p>
</div> </div>
<a href="relative/destination">Go elsewhere…</a> <a href="relative/destination">Go elsewhere…</a>
<div class="columns">
<div class="columns">
<div> <div>
First column to describe the associated First column to describe the associated
image of a debian landscape debanner. image of a debian landscape debanner.
@ -48,10 +51,9 @@
<div> <div>
<img src="images/debanner.jpeg" alt="Debian banner."> <img src="images/debanner.jpeg" alt="Debian banner.">
</div> </div>
</div> </div>
<div class="wrapper">
<div class="wrapper">
<section> <section>
<h2>A Heading</h2> <h2>A Heading</h2>
<ol>Ordered: <ol>Ordered:
@ -60,7 +62,6 @@
</ol> </ol>
<p>Another paragraph.</p> <p>Another paragraph.</p>
</section> </section>
<section> <section>
<h2><span class="thing">Another</span> Heading</h2> <h2><span class="thing">Another</span> Heading</h2>
<ul>Unordered: <ul>Unordered:
@ -69,7 +70,6 @@
</ul> </ul>
<time>Time.</time> <time>Time.</time>
</section> </section>
<section> <section>
<h2>Yet Another Heading</h2> <h2>Yet Another Heading</h2>
<h3>Sub Heading</h3> <h3>Sub Heading</h3>
@ -78,17 +78,17 @@
Yet another paragraph that is quite a bit longer than others. Yet another paragraph that is quite a bit longer than others.
</p> </p>
</section> </section>
</div>
</div> </main>
</main> <!-- footers -->
<footer> <footer>
Footer. Footer.
</footer> </footer>
<script src="script/debug.js" defer></script> <!-- </> -->
</body>
</body>
</html> </html>