help/rtfd/public/html/index.html

53 lines
895 B
HTML
Raw Normal View History

2025-01-24 14:21:15 +01:00
<!DOCTYPE html>
<html>
2025-01-24 14:52:14 +01:00
<head>
2025-01-24 17:42:50 +01:00
<link rel="stylesheet" href="index.css">
2025-01-24 14:52:14 +01:00
<title>Title.</title>
</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-24 14:52:14 +01:00
<header>
Header.
2025-01-24 17:42:50 +01:00
<img src="images/logo.svg" alt="Logo of the website.">
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. -->
<h1>Root heading</h1>
2025-01-24 14:21:15 +01:00
2025-01-24 15:03:20 +01:00
<p>It is <strong>important</strong>.</p>
<p>Oh yeah, <em>sure</em></p>
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-24 14:52:14 +01:00
<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>
2025-01-24 14:21:15 +01:00
</html>