-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 1.65 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>C. Hoffmann</title>
<style>
body {
font-family:
system-ui,
-apple-system,
sans-serif;
max-width: 600px;
margin: 4rem auto;
padding: 0 1.5rem;
color: #e0e0e0;
background: #1a1a2e;
}
a {
color: #7eb8da;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
font-size: 1.5rem;
margin-bottom: 2rem;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 0.8rem 0;
}
li a {
font-size: 1.1rem;
}
.desc {
color: #888;
font-size: 0.85rem;
margin-left: 0.5rem;
}
</style>
</head>
<body>
<h1>Projects</h1>
<ul>
<li>
<a href="/prompt-composer/">Prompt Composer</a>
<span class="desc">— interactive prompt builder</span>
</li>
<li>
<a href="/shipping/">Punk Shipping</a>
<span class="desc"
>— interaktiver Versandkostenrechner (GERMAN)</span
>
</li>
</ul>
</body>
</html>