-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 977 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
<!DOCTYPE html>
<html lang="en" data-theme="synthwave">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Clock</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1 class="text-3xl mt-5">Count Down Timer <span id="main-date"></span></h1>
<div class="clock">
<div class="bg"><h2 class="show-counter">00</h2></div>
<h2>:</h2>
<div class="bg"><h2 class="show-counter">00</h2></div>
<h2>:</h2>
<div class="bg"><h2 class="show-counter">00</h2></div>
<h2>:</h2>
<div class="bg"><h2 class="show-counter">00</h2></div>
</div>
<script src="./js/script.js"></script>
</body>
</html>