-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 760 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alarm and To-do List</title>
<link rel="stylesheet" href="stylemain.css">
</head>
<body>
<div class="alarm" onclick="gotoalarm()"><img src="img/alarmicon.png" class="alarmicon"><h3 id="alarmcaption">Alarm Clock</h3></div>
<div class="list" onclick="gotolist()"><img src="img/todolist.png" class="todolist"><h3 id="todolist">To-do List</h3></div>
<script>
function gotoalarm()
{
window.location.replace('alarmclock.html');
}
function gotolist()
{
window.location.replace('todolist.html');
}
</script>
</body>
</html>