forked from StepIntoTechCIC/techathon-countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<title>Techathon Countdown</title>
<meta charset="utf-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Overpass+Mono&family=Roboto&family=Russo+One&display=swap">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="spinner">
<img src="media/techathon.svg">
</div>
<div class="slides">
<div class="antiburn">
<img src="media/techathon.svg" alt="Techathon logo" class="logo">
<div class="countdown">
<div class="countdownCell">
<h1 class="countdownDays">--</h1>
<p>JAMES</p>
</div>
<div class="countdownCell colon">
<h1>:</h1>
</div>
<div class="countdownCell">
<h1 class="countdownHours">--</h1>
<p>HRS</p>
</div>
<div class="countdownCell colon">
<h1>:</h1>
</div>
<div class="countdownCell">
<h1 class="countdownMinutes">--</h1>
<p>MINS</p>
</div>
<div class="countdownCell colon">
<h1>:</h1>
</div>
<div class="countdownCell">
<h1 class="countdownSeconds">--</h1>
<p>SECS</p>
</div>
</div>
</div>
</div>
</body>
</html>