-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
52 lines (48 loc) · 1.58 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
<html>
<head>
<title>
sample web
</title>
<link rel="stylesheet" href="can.css">
<script>
function cal(){
window.open("cal.html")
}
function todo(){
window.open("todolist.html")
}
function alarm(){
window.open("alarm.html")
}
function budget(){
window.open("bud.html")
}
function quote(){
window.open("quote.html")
}
function chatbot(){
window.open("chot.html")
}
function pomodoro(){
window.open("pomo.html")
}
</script>
</head>
<body>
<div class="banner">
<div class="content">
<h1 style="font-size: 50px;">You may delay but time will not...!!</h1>
<p style="color: white;">Start your work now</p>
<div>
<button type="button" onclick="cal()"><span></span>Calendar</button>
<button type="button" onclick="todo()"><span></span>To-Do List</button>
<button type="button" onclick="alarm()"><span></span>Alarm Clock</button>
<button type="button" onclick="budget()"><span></span>Budget Planner</button>
<button type="button" onclick="quote()"><span></span>Quote Generator</button>
<button type="button" onclick="chatbot()"><span></span>Chat Bot</button>
<button type="button" onclick="pomodoro()"><span></span>Pomodoro</button>
</div>
</div>
</div>
</body>
</html>