-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.06 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hive Mind - Coming Soon</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #e0e0e0;
text-align: center;
padding: 50px;
}
h1 {
font-size: 3em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
.cta {
display: inline-block;
padding: 10px 20px;
background-color: #ffff00;
color: black;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Hive Mind</h1>
<p>A new era of collective intelligence is coming soon.</p>
<p>Stay tuned for the revolution in collaborative thinking.</p>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" class="cta">Notify Me</a>
</body>
</html>