-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·27 lines (27 loc) · 794 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·27 lines (27 loc) · 794 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="styles.css" rel="stylesheet" />
<script defer src="script.js"></script>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap"
rel="stylesheet"
/>
<title>JavaSript Digital Clock</title>
</head>
<body>
<div id="digitalClock" class="clock">
<div class="hour"></div>
<div class="minute"></div>
<div class="second"></div>
</div>
<div id="date" class="date">
<div class="day"></div>
<div class="month"></div>
<div class="year"></div>
</div>
</body>
</html>