-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (50 loc) · 1.69 KB
/
index.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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name = "description" content = "Don't let COVID get you down; welcome to your productivity portal">
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<h1>Bonkertivity</h1>
<ul class= "nav">
<li> <h3>Time management, made easy. </h3> </li>
<li>⏰<li/>
</ul>
<div id = "CurrentTime">
<iframe src="http://free.timeanddate.com/clock/i7hxygda/n5348/fn17/fs20/fcff5733/tct/pct/ftb/pd2/tt0/ta1" frameborder="0" width="604" height="26" allowTransparency="true"></iframe>
</div>
<div class = content>
<div id = "Schedule">
<h1>Schedule</h1><br>
<div id="updSched"></div>
<script src="showTasks.js"></script>
<label for="sched" class = "newtask">+ </label>
<input type = "text" id = "sched"> <button type="submit" id = "button1">Enter</button>
<script src="gatherTasks.js"></script>
</div>
<div id = "ToDoList">
<h1>To-Do</h1><br>
<div id="updToDo"></div>
<script src="showToDos.js"></script>
<label for="do" class = "newtask">+ </label>
<input type = "text" id = "do"> <button type="submit" id = "button2">Enter</button>
<script src="gatherToDo.js"></script>
</div>
<div id = "Daily">
<h1>Daily</h1><br>
<div id="updDH"></div>
<script src="showDailyHabits.js"></script>
<label for="habit" class = "newtask">+ </label>
<input type = "text" id = "habit"> <button type="submit" id = "button3">Enter</button>
<script src="gatherDailyHabits.js"></script>
</div>
</div>
</body>
<div id = "Footer">
<footer>
Copyright © 2020 <br>
Created by Kim, Isabel, Sam, and Adrianna. Students at KnightHacks 2020. <br>
</footer>
</div>
</html>