-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time Machine Display</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="time-machine">
<div class="time-entry">
<p class="label">DESTINATION TIME</p>
<p class="date" id="destination-date">JAN 01 1885 12:00 AM</p>
</div>
<div class="time-entry">
<p class="label">PRESENT TIME</p>
<p class="date" id="present-date">OCT 21 2024 12:00 PM</p>
</div>
<div class="time-entry">
<p class="label">LAST TIME DEPARTED</p>
<p class="date" id="last-date">OCT 26 1985 01:21 AM</p>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>