-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 1012 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Drawing Game</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="startPage">
<div class="title-container">
<img src="https://cdn.discordapp.com/attachments/1194364147132022879/1196499707560730624/DRAWING.png?ex=65b7da30&is=65a56530&hm=4b90591378c0bd1c18b8f582&" alt="Image Description" id="titleImage">
</div>
<h2>TIME TO NEXT DOODLEBOMB:</h2>
<div id="countdown">
<span id="hours"></span>:
<span id="minutes"></span>:
<span id="seconds"></span>
</div>
<div id="buttonContainer">
<button id="startButton">SET IT OFF</button>
<button id="voteButton">VOTE</button>
<button id="settingsButton">SETTINGS</button>
</div>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>