-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalarmClock.html
More file actions
49 lines (45 loc) · 936 Bytes
/
alarmClock.html
File metadata and controls
49 lines (45 loc) · 936 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0">
<link rel="stylesheet" href="alarmClock.css">
<title>Advanced Alarm Clock</title>
</head>
<body>
<div class="clock">
<h1>
ALARM CLOCK
</h1>
<div class="time" id="time">
00:00:00
</div>
<div class="input-row">
<div class="input-field">
<label for="alarmDate">
Select Date:
</label>
<input type="date"
id="alarmDate"
class="alarm-input"
min="">
</div>
<div class="input-field">
<label for="alarmTime">
Select Time:
</label>
<input type="time" id="alarmTime"
class="alarm-input">
</div>
<button id="setAlarm">
Set Alarm
</button>
</div>
<div class="alarms" id="alarms">
</div>
</div>
<script src="alarmClock.js"></script>
</body>
</html>