-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.39 KB
/
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
46
47
48
49
<html>
<head>
<title>How old is Zeus today?</title>
<meta property="og:title" content="How old is Zeus today?" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://howoldiszeustoday.com" />
<meta property="og:description" content="How old is he really?" />
<meta property="og:image" content="https://howoldiszeustoday.com/Zeus.png" />
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2ZK1MTRSVL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2ZK1MTRSVL');
</script>
<style>
body {
display: flex;
justify-content:center;
align-items:center;
height:100%;
background: #f8f8f2;
}
h1 {
background-clip: text;
-webkit-background-clip: text;
color: #283e3e;
font-family: 'Share Tech Mono', monospace;
/* font-size: calc(40px + (500 - 40) * ((90vw - 320px) / (3840 - 300))); */
}
h1::selection {
background: #3D0045;
background-clip: border-box;
-webkit-background-clip: border-box;
color: #f8f8f2;
}
</style>
</head>
<body>
<h1>one day older than yesterday. </h1>
</body>
</html>