-
Notifications
You must be signed in to change notification settings - Fork 0
/
timetable.html
46 lines (35 loc) · 1.41 KB
/
timetable.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="timetable.css">
<title>Time Table</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<form >
<label for="work">To Do:</label>
<input type="text" id="work" class="form-control" name="work" value="" placeholder="What you'll do?">
<label for="time">Time:</label>
<input type="text" id="time" class="form-control" name="time" value="" placeholder="eg. 8:00-9:30"> <br>
<button type="button" id="done" class="btn btn-primary">Add</button>
</form>
<br>
<table class="table">
<thead class="thead-dark" id="mytable">
<tr>
<th scope="col">Time</th>
<th scope="col">To Do</th>
</tr>
</thead>
</table>
</div>
<br><br><br>
<center><button type="button" id="complete" class="btn btn-dark">Complete</button><center><br><br><br><br>
<script type="text/javascript" src="tt.js">
</script>
</body>
</html>