-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (27 loc) · 1.17 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<title>Bazooka 2023</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<div class="home">
<video loop id="rickroll" hidden="true">
<source src="assets/post-release/rickroll.mp4" type="video/mp4" />
</video>
<div class="overlay"></div>
<div class="home-content" id="timer">
<h2 id="bazookaText">Bazooka 2023</h2>
<h1 id="timerText">00:00:00</h1>
<p id="clickText">Click for more!</p>
</div>
</div>
<audio id="nyan" loop>
<source src="assets/pre-release/nyan.mp3" type="audio/mp3" />
</audio>
</body>
<script src="main.js"></script>
</html>