-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 1011 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1 class="title">Under Construction</h1>
<p class="description">We're working on something awesome. Please check back soon.</p>
<div class="countdown" id="countdown">
<span class="countdown-item" id="days">0</span>
<span class="countdown-label">Days</span>
<span class="countdown-item" id="hours">0</span>
<span class="countdown-label">Hours</span>
<span class="countdown-item" id="minutes">0</span>
<span class="countdown-label">Minutes</span>
<span class="countdown-item" id="seconds">0</span>
<span class="countdown-label">Seconds</span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>