-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (27 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<!-- Page meta-information -->
<meta charset="utf-8" />
<meta name="description" content="Simple todo appication" />
<meta name="robots" content="noindex" />
<title>Charlotte's todo list</title>
<!-- Styles -->
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./main.css"/>
</head>
<body>
<h1 class="page-heading">Charlotte's todo list</h1>
<form action="#" id="new-todo-form" class="todo-form">
<div class="form-text">
<input type="text" id="new-todo" placeholder="put your things todo here..."/>
</div>
<div class="form-button">
<input type="submit" id="submit" value="Submit"/>
</div>
</form>
<ul id="todo-list" class="todo-list"></ul>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="./main.js"></script>
</body>
</html>