-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 860 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 860 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>__HOSTNAME__</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0a0a0a;
color: #e0e0e0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
}
.container { text-align: center; }
h1 { font-size: 3rem; font-weight: 300; margin: 0.5rem 0; }
p { color: #888; margin: 0.5rem 0; }
</style>
</head>
<body>
<div class="container">
<p>served with nginx</p>
<h1>__HOSTNAME__</h1>
<p>hosted with love on exe.dev</p>
</div>
</body>
</html>