-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
44 lines (42 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="/css/main.css" />
<title>TODO Site</title>
</head>
<body>
<script src="/js/main.js"></script>
<div class="container">
<h1>Remember the Tasks!</h1>
<div class="row">
<div class="col-md-4">
<div class="my-3">
<h4>Task Title</h4>
<input
id="newTaskContent"
type="text"
class="form-control"
placeholder="task contents"
/>
</div>
<button
class="btn btn-primary btn-lg btn-block"
type="submit"
onclick="createTask();"
>
Add
</button>
</div>
</div>
<div className="row p-2" id="tasksDiv"></div>
</div>
</body>
</html>