-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (63 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Astronerd - Coming Soon</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background-color: #1a1a1a;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 600px;
}
h1 {
font-size: 3rem;
margin: 0;
font-style: italic;
}
p {
font-size: 1.2rem;
margin: 20px 0;
}
.coming-soon {
font-size: 1rem;
margin-top: 30px;
color: #bbbbbb;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.astro-logo {
margin-bottom: 20px;
}
.astro-logo img {
max-width: 100px;
}
</style>
</head>
<body>
<div class="container">
<div class="astro-logo">
<img src="placeholder-logo.png" alt="AstroNerd Logo">
</div>
<h1>Astronerd Blog</h1>
<p>Exploring the cosmos, cybersecurity, photography, and more.</p>
<p class="coming-soon">Stay tuned for updates! Launching soon at <a href="https://astronerd.space">astronerd.space</a></p>
</div>
</body>
</html>