-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
86 lines (78 loc) · 2.75 KB
/
home.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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<!-- adding tiltle -->
<title>Javascript Test 1</title>
<!-- CSS files -->
<link href="./home.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<!-- Display Clock -->
<h1 style="color:gray">Clock</h1>
<section class="clock">
<ul>
<li id="hours">00</li> :
<li id="minutes">00</li> :
<li id="seconds">00</li> :
<li id="period">AM</li>
</ul>
</section>
<!-- set Alarm -->
<p style="color: whitesmoke;
font-size: x-small;
text-align: center;
"
>
Set Alarm :
</p>
<section class="set-alarm">
<!-- 12 Hours Select Option input -->
<div class="column">
<select id="hoursInput">
<option value="hour" selected hidden>
Hour
</option>
</select>
</div>
<!-- Minutes Select Option input -->
<div class="column">
<select id="minutesInput">
<option value="minute" selected hidden>
Minute
</option>
</select>
</div>
<!-- AM/PM Select Option input -->
<div class="column">
<select id="AMPM">
<option value="AM">
AM
</option>
<option value="PM">
PM
</option>
</select>
</div>
<!-- Add Alarm Button -->
<div class="column">
<button type="button" class="button-Add-Alarm">Add Alarm</button>
</div>
</section>
<br/>
<hr style="border-color: grey;"/>
<!-- alarm lists -->
<p style="color: whitesmoke;
font-size: x-small;
text-align: center;
margin-top: 10px;
"
>
Alarm List :
</p>
<section class="alarm-list">
<!-- Append Alarm list Content here -->
</section>
</div>
<script src="./script.js" type="text/javascript"></script>
</body>
</html>