-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.72 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 lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Count Up Timer</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css"
content="text/css">
<link rel="stylesheet" href="./css/style.css" content="text/css">
</head>
<body class="h-100">
<div class="container h-100">
<div class="row align-items-center justify-content-center h-100">
<div class="col-lg-8">
<div class="row justify-content-center px-4 px-md-0">
<div id="years" class="col-md-2 col-4 mb-md-0 mb-3">
<h1 class="time-font-1"></h1>
<p class="time-font-2"></p>
</div>
<div id="days" class="col-md-2 col-8 mb-md-0 mb-3">
<h1 class="time-font-1"></h1>
<p class="time-font-2"></p>
</div>
<div id="hours" class="col-md-2 col-4">
<h1 class="time-font-1"></h1>
<p class="time-font-2"></p>
</div>
<div id="minutes" class="col-md-2 col-4">
<h1 class="time-font-1"></h1>
<p class="time-font-2"></p>
</div>
<div id="seconds" class="col-md-2 col-4">
<h1 class="time-font-1"></h1>
<p class="time-font-2"></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script>
<script src="./js/index.js"></script>
</body>
</html>