-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuniv-time.html
57 lines (55 loc) · 2 KB
/
univ-time.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
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon/favicon-16x16.png">
<link rel="manifest" href="./images/favicon/site.webmanifest">
<title>Derrick-NUBY Four Most Important Times | Dates</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<nav class="menu">
<a href="./index.html">
<div class="menu__item menu__item--realtime">Real-Time</div>
</a>
<a href="./birth-time.html">
<div class="menu__item menu__item--dobtime">Birth-Time</div>
</a>
<a href="./highschool-time.html">
<div class="menu__item menu__item--hstime">HighSchool-Time</div>
</a>
<a href="./univ-time.html">
<div class="menu__item menu__item--unitime">Univ-Time</div>
</a>
</nav>
<main class="main">
<div class="alltimes">
<div class="unitime">
<p id="actual_time"> Refreshing... </p>
</div>
<div class="destime">
<p id="actual_days"> Refreshing... </p>
<br>
<p id="actual_money"> Refreshing... </p>
</div>
</div>
</main>
<br><br><br><br>
<footer>
<div class="copyright">
<p> © Derrick Nuby </p>
</div>
<div class="madeby">
<p>Proudly Made by <a href="https://derricknuby.com/">Derrick-NUBY</a> </p>
</div>
<div class="repo">
<p><a href="https://github.com/Derrick-Nuby/My-Timer">Git-Repo</a></p>
</div>
</footer>
<script src="./univ-time.js"></script>
</body>
</html>