-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 1.36 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 1.36 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countdown Timer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<h1>Countdown Timer</h1>
<p>Bilakah tarikh penting anda?</p>
</div>
</header>
<!-- Countdown Section -->
<section id="countdown">
<div class="container">
<div id="timer">
<div class="time">
<span id="days">00</span>
<p>Hari</p>
</div>
<div class="time">
<span id="hours">00</span>
<p>Jam</p>
</div>
<div class="time">
<span id="minutes">00</span>
<p>Minit</p>
</div>
<div class="time">
<span id="seconds">00</span>
<p>Saat</p>
</div>
</div>
<div id="event-date">
<label for="date">Masukkan Tarikh:</label>
<input type="datetime-local" id="date" />
<button id="start-timer">Mula</button>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2023 Countdown Timer By Mr.Syah . Hak Cipta Terpelihara.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>