-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalarm-sounds.html
39 lines (38 loc) · 1.19 KB
/
alarm-sounds.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alarm Selection</title>
<link rel="stylesheet" href="alarm.css" />
<link rel="stylesheet" href="styles/darkmode.css">
</head>
<body>
<div class="container">
<h1>Choose Alarm Sound</h1>
<form>
<label>
<input type="radio" name="alarm" value="take_your_medicine.mp3" />
Alarm 1 </label
><br />
<label>
<input type="radio" name="alarm" value="pill_time.mp3" />
Alarm 2 </label
><br />
<label>
<input type="radio" name="alarm" value="take_your_medicine.mp3" />
Alarm 3 </label
><br />
<label>
<input type="radio" name="alarm" value="time_for_the_pill.mp3" />
Alarm 4 </label
><br />
<button type="button" id="preview-btn">Preview</button>
<button type="button" id="save-btn">Save Alarm</button>
</form>
<a href="medication.html">Go to Medication Page</a>
</div>
<script src="alarm.js"></script>
<script src="darkmode.js"></script>
</body>
</html>