help/rtfd/public/web/index.html

95 lines
2.2 KiB
HTML
Raw Normal View History

2025-01-24 14:21:15 +01:00
<!DOCTYPE html>
2025-01-27 00:31:16 +01:00
<html lang="en">
2025-01-24 14:21:15 +01:00
2025-01-24 14:52:14 +01:00
<head>
2025-01-26 17:23:23 +01:00
<meta charset="UTF-8">
<meta name="description" content="Brief description of page.">
2025-02-10 14:10:44 +01:00
<meta name="keywords" content="keyword, wordkey">
2025-01-27 00:31:16 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-01-24 14:52:14 +01:00
<title>Title.</title>
2025-01-26 17:23:23 +01:00
<link rel="stylesheet" href="style/main.css">
2025-01-24 14:52:14 +01:00
</head>
2025-01-24 14:21:15 +01:00
2025-01-24 14:52:14 +01:00
<body>
2025-01-24 14:21:15 +01:00
2025-01-27 10:58:14 +01:00
<header id="debug">
</header>
2025-01-24 14:52:14 +01:00
<header>
2025-01-24 17:42:50 +01:00
<img src="images/logo.svg" alt="Logo of the website.">
2025-01-26 19:38:23 +01:00
<nav aria-label="Main navigation">
<ul>
<li><a href="index.html">Home</a></li>
2025-01-27 00:31:16 +01:00
<li><a href="some.html">Some</a></li>
2025-01-26 19:38:23 +01:00
<li><a href="other.html">Other</a></li>
2025-01-27 00:31:16 +01:00
<li><a href="about.html">About</a></li>
2025-01-26 19:38:23 +01:00
</ul>
</nav>
2025-01-24 14:52:14 +01:00
</header>
2025-01-24 14:36:15 +01:00
2025-01-24 14:52:14 +01:00
<main>
2025-01-24 14:21:15 +01:00
2025-01-24 14:52:14 +01:00
<!-- Comment. -->
2025-01-26 21:55:22 +01:00
<h1>This is some long root heading</h1>
2025-01-24 14:21:15 +01:00
2025-01-25 19:42:38 +01:00
<div class="sectionless">
<p><span class="thing">It</span> is <strong>important</strong>.</p>
<p>Oh yeah, <em>sure</em></p>
</div>
2025-01-24 14:52:14 +01:00
2025-01-24 17:42:50 +01:00
<a href="relative/destination">Go elsewhere…</a>
2025-01-26 18:33:06 +01:00
<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>
2025-01-26 17:49:23 +01:00
2025-01-26 17:23:23 +01:00
<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>
2025-01-26 18:33:06 +01:00
<section>
<h2>Yet Another Heading</h2>
<h3>Sub Heading</h3>
2025-01-27 11:48:41 +01:00
<p>
2025-01-27 14:52:09 +01:00
1________11________21________31________41<br>
2025-01-27 11:48:41 +01:00
Yet another paragraph that is quite a bit longer than others.
</p>
2025-01-26 18:33:06 +01:00
</section>
2025-01-26 17:23:23 +01:00
</div>
2025-01-24 14:52:14 +01:00
</main>
<footer>
Footer.
</footer>
2025-02-10 15:27:23 +01:00
<script src="script/debug.js" defer></script>
2025-01-24 14:52:14 +01:00
</body>
2025-01-24 14:21:15 +01:00
</html>