-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 898 Bytes
/
index.html
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
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
<style>
body {
font-family: monospace;
font-size: 1em;
}
a {
text-decoration: underline;
}
.centerText {
text-align: center;
}
@media (prefers-color-scheme: dark) {
body {
background: #333;
color: #FFF;
}
a {
color: #FF8877;
}
}
@media (prefers-color-scheme: light) {
body {
background: #FFF;
color: #333;
}
a {
color: #800020;
}
}
</style>
</head>
<body>
<h1 class="centerText">Hello World</h1>
<p class="centerText">[ <a rel="me" href="https://1password.social/@ben">Mastodon</a> | <a href="https://twitter.com/bwoodruff">Twitter</a> ]</p>
</body>
</html>