-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (35 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#1d1d1d">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Motivation</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body class="content">
<div id="particles"></div>
<main>
<div class="wrapper">
<section>
<h1 class="heading">Work <b>harder</b></h1>
</section>
<section>
<div id="currentTime"></div>
<p id="currentDate"></p>
<div id="age"></div>
<p>years old</p>
<div id="yearsToLive"></div>
<p>years to live</p>
<div id="daysToLive"></div>
<p>days to live</p>
<div id="hoursLeftToday"></div>
<p>waking hours left today</p>
</section>
</div>
</main>
<script type="text/javascript" src="js/vars.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/particles.js"></script>
</body>
</html>