-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·41 lines (37 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Pandakit — Demo Desk</title>
<meta charset="utf-8">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<meta content="CirclepandaLabs" name="author">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="./logo.png" rel="shortcut icon">
<link rel="stylesheet" type="text/css" href="./assets/css/pandakit.css">
</head>
<body>
<div class="container">
<div class="docker">
<div class="grid-md-4 grid-sm-4 clearfix">
<form id="todo">
<div class="grid-md-12 pb-1">
<h1>TO DO LIST</h1>
</div>
<!--todoinput,click,and todolist are the main id for todo list -->
<div class="grid-md-12 pb-1">
<input id="todoinput">
</div>
<div class="grid-md-12 pb-1">
<button type="button" id="click" class="btn btn-primary click">ADD</button>
<button type="button" id="cross" class="btn btn-secondary click">DELETE</button>
</div>
<div class="grid-md-12">
<ol id="todolist"></ol>
</div>
</form>
</div>
</div>
</div>
<script src="./assets/js/pandakit.js"></script>
</body>
</html>