forked from AbhiTaker/SuperScript---DevHack-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Schedule.html
37 lines (32 loc) · 898 Bytes
/
Schedule.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
<!doctype html>
<html lang="en">
<head>
<title>Schedule</title>
<script src="data.js" defer> </script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="top">
<h1>SCHEDULER</h1>
</header>
<img src = "schedule.bmp" height = 200px width = 300px >
<section id="body">
<div id="input">
<h3>ADD NEW TASK</h3><br>
<button onclick="schedule.createTable()">CREATE SCHEDULE</button><br>
<input type="text" id="task">
<button onclick="schedule.newRecord()">ADD TASK</button><br>
<button onclick="schedule.dropTable()">DELETE SCHEDULE</button>
</div>
<div id="img"
<img src = "schedule.bmp" height ="20px" width = "30px" >
</div>
<div id="output">
<h1>hello</h1>
<h3>The Current Schedule:</h3>
<ul class="record-list" id="db-results"></ul>
<div id="db-log"></div>
</div>
</section>
<body>
<html>