-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 854 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
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Clock</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="clock">
<div id="season"></div>
<div id="date"></div>
<div id="day"></div>
<div id="time"></div>
</div>
<!-- Hemisphere Selection Form -->
<form id="hemisphereForm">
<label>
<input type="radio" name="hemisphere" value="northern" checked>
Northern Hemisphere
</label>
<label>
<input type="radio" name="hemisphere" value="southern">
Southern Hemisphere
</label>
<button type="submit">Detect Season</button>
</form>
<script src="script.js"></script>
</body>
</html>