-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 1.37 KB
/
index.html
File metadata and controls
60 lines (56 loc) · 1.37 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Einstein's Game</title>
<meta
name="description"
content="Public developer site root for Einstein's Game."
/>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
color: #18252c;
background: #fbf6eb;
font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}
main {
width: min(680px, 100%);
}
h1 {
margin: 0 0 12px;
font-size: clamp(2rem, 8vw, 4rem);
line-height: 1;
}
p {
margin: 0 0 18px;
}
a {
color: #1f5c62;
}
</style>
</head>
<body>
<main>
<h1>Einstein's Game</h1>
<p>Public developer site root for Einstein's Game.</p>
<p>
<a href="/app-ads.txt">app-ads.txt</a>
<span aria-hidden="true"> | </span>
<a href="https://leontopodi.github.io/einsteins-game-pages/privacy/">
Privacy Policy
</a>
<span aria-hidden="true"> | </span>
<a href="https://leontopodi.github.io/einsteins-game-pages/support/">
Support
</a>
</p>
</main>
</body>
</html>