-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 828 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 828 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>♥️ Quote-Clock</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<!-- clock-section -->
<div class="clock-container">
<h1 id="clock">Clock Time Display</h1>
<!-- <h2 id="day_date">Thursday, December 19, 2024</h2> -->
<h2 id="day_date">day, month, date, year</h2>
</div>
<!-- quote-section -->
<div class="container">
<!-- quote-block -->
<h1>🚀 Spark Your Motivation 🔥</h1>
<div class="quote-block">
<p id="quote">You miss 100% of the shots you don’t take. — Wayne Gretzky</p>
</div>
</div>
<script src="./scripts.js"></script>
</body>
</html>