-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (115 loc) · 5 KB
/
Copy pathindex.html
File metadata and controls
129 lines (115 loc) · 5 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<link rel="icon" href="https://em-content.zobj.net/source/microsoft-teams/337/alarm-clock_23f0.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/push.js/1.0.8/push.min.js"> -->
<!-- https://cdn-icons-png.flaticon.com/512/2994/2994793.png -->
<title>Alarm Clock</title>
</head>
<body>
<div class="main-container">
<!-- clock section -->
<div class="clock-container">
<div class="clock">
<span class="hour">00</span>
<span class="colon">:</span>
<span class="minute">00</span>
<span class="colon">:</span>
<div class="side">
<span class="second">00</span>
<span class="am-pm">--</span>
</div>
</div>
<div class="days">
<span class="month">---</span>
<span class="day">---</span>
<span class="date">00</span>
</div>
<div class="add-alarm">
<img src="https://cdn-icons-png.flaticon.com/512/3524/3524388.png" alt="add-alarm" class="add-img">
<div><span class="display-add-alarm">Add Alarm</span></div>
</div>
<!-- set alarm section -->
<div class="set-alarm">
<p class="set-alarm-heading">Set Alarm</p>
<div class="alarm-input">
<div>
<input type="number" class="set-hour" id="set-hour" required="required" placeholder="Hour">
<input type="number" class="set-minute" id="set-minute" required="required"
placeholder="Minute">
<input type="number" class="set-sec" id="set-sec" required="required" placeholder="Second">
</div>
<div class="set-am-pm" id="set-am-pm">
<div class="set-am set-am-active" id="set-am">AM</div>
<div>-</div>
<div class="set-pm" id="set-pm">PM</div>
</div>
</div>
<div class="alarm-buttons">
<button class="set-alarm-button">Set Alarm</button>
</div>
</div>
</div>
<!-- time toggle section -->
<div class="local-time-toggle">
<button class="local-time-toggle-button"><span class="display-hr">- - - -</span><span class="button-span"><i
class="fa-regular fa-clock"></i></button>
</div>
<!-- alarm list section -->
<div class="alarm-list-section" id="alarm-list">
<ul class="alarm-list">
<!-- <li>
</li> -->
</ul>
</div>
</div>
<!-- other stuff section-->
<!-- theme toggle section -->
<div class="theme-toggle">
<span class="display-theme">You are in Dark mode</span>
<img src="https://cdn-icons-png.flaticon.com/512/581/581601.png" alt="" class="theme-image">
</div>
<!-- alert section -->
<div class="show-notification">
<div class="warning">
<div class="show-notification-warning-img"><i class="fa-solid fa-check"></i></div>
<div class="show-notification-msg" id="notification-msg"></div>
</div>
</div>
<div class="show-warning">
<div class="warning">
<div class="show-warning-img"><i class="fa-solid fa-exclamation"></i></div>
<div class="show-warning-msg" id="warning-msg"></div>
</div>
</div>
<div id="alarm-ringing">
<svg viewBox="0 30 500 500" width="200" height="200">
<g id="svg" transform="matrix(1, 0, 0, 1, 47, 230)">
<circle cx="200" cy="155" r="75" />
<circle cx="200" cy="155" r="60" />
<circle cx="200" cy="155" r="45" />
<circle cx="200" cy="155" r="30" />
<circle cx="200" cy="155" r="20" />
<text x="200" y="155" text-anchor="middle" dy=".3em">Stop</text>
</g>
</svg>
<div id="snooze">
<div class='wave'></div>
<div class='wave delay1'></div>
<div class='wave delay2'></div>
</div>
<div class="snooze-text">Snooze</div>
</div>
<footer>
<div class="footer-text">@ Developed By Ankit Vishwakarma</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/push.js/1.0.8/push.min.js"></script>
<script src="script.js"></script>
</body>
</html>