html.html
HTML document, Unicode text, UTF-8 text
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<title>html</title>
6
<link rel="stylesheet" href="/static/style.css">
7
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8
</head>
9
<body>
10
<header>
11
<nav>
12
<ul>
13
<li><a href="/">Home</a></li>
14
<li><a href="/projects">Projects</a></li>
15
<li><a href="/index">Index</a></li>
16
<li><a href="/about">About</a></li>
17
<li><a href="https://roundabout-host.com/roundabout">Roundabout-host</a></li>
18
</ul>
19
<ul>
20
<li><a href="mailto:root@roundabout-host.com" id="mail-link">root@roundabout-host.com</a></li>
21
</ul>
22
</nav>
23
</header>
24
<main>
25
26
<h1>html</h1>
27
28
<div class="topic-posts">
29
30
<article class="content-area">
31
<h2><a href="/posts/semantic-css.html" class="article-title">Let's write more semantic CSS</a></h2>
32
<div class="home-article-date">2024-05-18</div>
33
<p><p>You probably wrote something like this at least once in your life:
34
</p><pre data-language="html"><div class="card card--rounded card--primary">
35
<div class="card__image-container">
36
<img src="image.jpg" alt="A nice image" class="card__image">
37
<span class="card__image-caption">A nice image</span>
38
</div>
39
<div class="card__content">
40
<div class="card__header">
41
<div class="card__title">Hello, world!</div>
42
</div>
43
<p class="card__text">
44
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
45
</p>
46
</div>
47
<div class="card__footer">
48
<button class="btn btn--primary btn--raised btn--accent card__button card__button--primary">Click me!</button>
49
<button class="btn btn--secondary btn--raised btn--accent card__button card__button--secondary">Click me!</button>
50
</div>
51
</div>
52
</pre><p>Or this:
53
</p><pre data-language="html"><div class="max-w-sm rounded overflow-hidden shadow-lg">
54
<div>
55
<img class="w-full" src="image.jpg" alt="A nice image">
56
<span class="text-gray-500 text-base">A nice image</span>
57
</div>
58
<div class="px-6 py-4">
59
<div>
60
<div class="font-bold text-xl mb-2">Hello, world!</div>
61
</div>
62
<p class="text-gray-700 text-base">
63
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
64
</p>
65
</div>
66
<div class="px-6 py-4">
67
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Click me!</button>
68
<button class="bg-transparent hover:bg-blue-500 text-blue-700 font-semibold hover:text-white py-2 px-4 border border-blue-500 hover:border-transparent rounded">Click me!</button>
69
</div>
70
</div>
71
</pre></p>
72
</article>
73
74
</div>
75
76
</main>
77
<footer>
78
<p>Page generated on Sunday, 2 February 2025 at 21:30:11</p>
79
<p xmlns:cc="http://creativecommons.org/ns#" >This work is marked with <a href="https://creativecommons.org/publicdomain/zero/1.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC0 1.0 Universal</a> (🄍). No rights reserved.</p>
80
<p>Hosted at <a href="https://roundabout-host.com/roundabout">Roundabout-host</a> using the static site service, and generated with <a href="/projects/ampoule.html">Ampoule</a>.</p>
81
<a href="#">Back to top</a>
82
</footer>
83
</body>
84
</html>