-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
84 lines (76 loc) · 2.12 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
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="voidicon.png" type="image/png">
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Space Mono', monospace;
color: white;
background-color: black;
}
h1, h2, p {
margin: 0;
}
.space-background {
background: url('your-space-background-image.jpg') no-repeat center center fixed; /* Add your retro space background image */
background-size: cover;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.overlay {
text-align: center;
background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
padding: 20px;
border-radius: 10px;
}
.void-text {
font-size: 4em;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
margin-bottom: 20px;
}
h2 {
font-size: 1.5em;
margin-bottom: 20px;
}
.begin-button {
font-size: 1.2em;
padding: 15px 30px;
background-color: #1a1a1a;
color: white;
border: 2px solid white;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.begin-button:hover {
background-color: rgb(43, 42, 42);
color: #ffffff;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="VOID">
<meta property="og:description" content="A 3D web experience by Tacoguy21">
<meta property="og:image" content="Spaceship.png">
<meta property="og:url" content="https://tacovoidgame.netlify.app/">
<title>VOID | Main Menu</title>
<link rel="icon" href="voidicon.png" type="image/png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<audio src="baby.mp3" autoplay loop></audio>
<div class="space-background">
<div class="overlay">
<h1 class="void-text">VOID</h1>
<h2>A 3D web experience</h2>
<button onclick="location.href='/VOID.html';" id="myButton" class="begin-button">BEGIN</button>
</div>
</div>
</body>
</html>