asw/archive/lab/boilerplate/kitchen-sink.html
exe.dev user e47a9f4401 asw-v01: archive deferred content (packs, site, lab, legacy examples)
- 2.1: packs/ -> archive/packs/
- 2.2: site/ -> archive/site/
- 2.3: src/lab/ -> archive/lab/
- 2.4: examples/ -> archive/examples-legacy/ (SSI-based)
2026-06-07 10:39:21 +02:00

87 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kitchen Sink | Trentuna</title>
</head>
<body>
<header>
<h1>Kitchen Sink</h1>
<p>A comprehensive test of all HTML elements.</p>
</header>
<main>
<article>
<h2>Typography & Lists</h2>
<p>This is a paragraph with <strong>bold</strong>, <em>italic</em>, <mark>highlighted</mark>, and <code>inline code</code>.</p>
<ul>
<li>Unordered list item</li>
<li>Another item</li>
</ul>
<ol>
<li>Ordered list item</li>
<li>Second item</li>
</ol>
<h2>Media</h2>
<figure>
<img src="placeholder.jpg" alt="Placeholder image">
<figcaption>Figure caption</figcaption>
</figure>
<video controls width="100%">
<source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<h2>Tables</h2>
<table>
<caption>Data Table Caption</caption>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
</tr>
</tbody>
</table>
<h2>Forms</h2>
<form action="/submit" method="post">
<fieldset>
<legend>Contact Details</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4"></textarea><br><br>
<label>
<input type="checkbox" name="subscribe"> Subscribe to newsletter
</label>
<br><br>
<button type="submit">Submit</button>
</fieldset>
</form>
<h2>Interactive Elements</h2>
<details>
<summary>Click to expand details</summary>
<p>This is the hidden content revealed by the details element.</p>
</details>
</article>
</main>
<footer>
<p>&copy; 2026 Trentuna. All rights reserved.</p>
</footer>
</body>
</html>