-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 1.7 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memento Mori.</title>
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-text">Memento Mori</div>
<div class="header-tagline">You could leave life right now. Let that determine what you do and say and think.
</div>
<div class="header-progress">
<div id="header-progress-value"></div>
<div class="progress-container">
<div id="progress-fill" class="progress-fill"></div>
</div>
</div>
<div id="countdown">
<div class="countdown-child">
<span id="countdown-days"></span>
<span class="countdown-child-text">DAYS</span>
</div>
<div class="countdown-child">
<span id="countdown-hours"></span>
<span class="countdown-child-text">HOURS</span>
</div>
<div class="countdown-child">
<span id="countdown-minutes"></span>
<span class="countdown-child-text">MINUTES</span>
</div>
<div class="countdown-child countdown-seconds">
<span id="countdown-seconds"></span>
<span class="countdown-child-text">SECONDS</span>
</div>
</div>
<div class="quote-container">
<div id="quote-text"></div>
<div id="quote-author"></div>
</div>
</header>
<!-- <main>
this is main
</main> -->
</body>
<script src="script.js"></script>
</html>