-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (47 loc) · 1.63 KB
/
index.html
File metadata and controls
62 lines (47 loc) · 1.63 KB
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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Task 2 - Coming Soon</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i"
rel="stylesheet">
<!--Main CSS File -->
<link href="css/style.css" rel="stylesheet">
<!-- Below is a reference style -->
<!-- <link href="css/reference-style.css" rel="stylesheet"> -->
</head>
<body>
<!-- Countdown container -->
<div class="text">
Count down to DES-DEV Demo day (29 <sup>th</sup> May, 2021)
</div>
<div class="countdown-container">
<div class="count-down">
<h4 class="heading-text" id="countDay"></h4>
<span class="desc-text">DAYS</span>
</div>
<div class="count-down">
<h4 class="heading-text" id="countHrs"></h4>
<span class="desc-text">HOURS</span>
</div>
<div class="count-down">
<h4 class="heading-text" id="countMin"></h4>
<span class="desc-text">MINUTES</span>
</div>
<div class="count-down">
<h4 class="heading-text" id="countSec"></h4>
<span class="desc-text">SECONDS</span>
</div>
</div>
<!-- /Countdown container -->
<script src="js/main.js"></script>
</body>
</html>