Skip to content

Commit aef7fe1

Browse files
committed
Modified the index.html adding necessary buttons
1 parent 2c5d12f commit aef7fe1

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

Sprint-3/alarmclock/index.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,26 @@
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<link rel="stylesheet" href="style.css" />
7-
<title>Title here</title>
7+
<title>Alarm clock app</title>
88
</head>
99
<body>
1010
<div class="centre">
1111
<h1 id="timeRemaining">Time Remaining: 00:00</h1>
12-
<label for="alarmSet">Set time to:</label>
12+
13+
<label for="alarmSet">Set time in seconds:</label>
1314
<input id="alarmSet" type="number" />
1415

15-
<button id="set" type="button">Set Alarm</button>
16-
<button id="stop" type="button">Stop Alarm</button>
16+
<div class="buttons">
17+
<button id="set" type="button">Set Alarm</button>
18+
<button id="pause" type="button">Pause Alarm</button>
19+
<button id="resume" type="button">Resume Alarm</button>
20+
<button id="stop" type="button">Stop Alarm</button>
21+
<button id="reset" type="button">Reset Alarm</button>
22+
</div>
1723
</div>
24+
1825
<script src="alarmclock.js"></script>
1926
</body>
2027
</html>
28+
29+

0 commit comments

Comments
 (0)