-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.1 KB
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 1.1 KB
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">
<title>Timer Count-Down</title>
<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=Gruppo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="body">
<div class="heading">
<h2 class="title">We are Coming Soon</h2>
<h3 class="title" id="end-Date">20 May 2024 10:00 Pm</h3>
<div class="col">
<div class="input_box"><input type="text" readonly value="0">DAYS</div>
<div class="input_box"><input type="text" readonly value="0">HOURS</div>
<div class="input_box"><input type="text" readonly value="0">MINUTS</div>
<div class="input_box"><input type="text" readonly value="0">SEC.</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>