html/lists

This commit is contained in:
Marc Beninca 2025-01-24 14:36:15 +01:00
parent 5ed754e3a5
commit eb4f44ac8d
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -2,14 +2,28 @@
<html> <html>
<head> <head>
<title>Title.</title>
</head> </head>
<body> <body>
<h1>Head 1</h1> <!-- Comment. -->
<h1>Root heading</h1>
<p>Paragraph.</p> <p>A paragraph.</p>
<h2>A Heading</h2>
<ol>Ordered:
<li>Some item</li>
<li>Another item</li>
</ol>
<p>Another paragraph.</p>
<h2>Another Heading</h2>
<ul>Unordered:
<li>Some item</li>
<li>Another item</li>
</ul>
<time>Time.</time> <time>Time.</time>
<footer>Footer.</footer> <footer>Footer.</footer>