-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 895 Bytes
/
index.html
File metadata and controls
34 lines (30 loc) · 895 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ticker</title>
<!-- CSS -->
<link rel="stylesheet" href="styles.css">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sixtyfour+Convergence&display=swap" rel="stylesheet">
</head>
<body>
<header class="navbar">
<h1>Ticker</h1>
</header>
<main class="canvas">
<div id="clock">
<div id="time">00:00:00 AM</div>
<hr>
<div class="date">
<span id="weekday">Monday</span>
<span id="divider">|</span>
<span id="date">15/04/2025</span>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>