-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhm.html
53 lines (53 loc) · 1.33 KB
/
hm.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
<!DOCTYPE html>
<html lang="en">
<head>
<script>var audio = new Audio('epsilon-program-theme-song.mp3');
audio.play();</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>????</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #ffffff;
color: #333;
text-align: center;
padding-top: 50px;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 100px;
line-height: 120px;
color: #6eb0d3;
}
p {
font-size: 20px;
color: #6eb0d3;
}
a {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #6eb0d3;
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
a:hover {
background-color: #d8311f;
}
</style>
</head>
<body>
<div class="container">
<h1>Coming Soon™</h1>
<p>Kifflom, brother-brother/sister-sister.</p>
<a href="https://noahvocat.is-a.dev/">Back to Home Page</a>
</div>
</body>
</html>