-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="todo_style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Cherry+Swash:wght@700&family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<title>JS Todos Exercise</title>
</head>
<body>
<h1>ToDoist</h1>
<div id="form">
<form>
<lable for="new_todo">Add a new ToDo:
<input type="text" name="new_todo" id="new_todo" required>
</lable>
<button id="add_todo" type="submit">Add</button>
</form>
</div>
<div id="container">
<ul class="todo_list">
</ul>
</div>
<script src="todo.js"></script>
<script src="https://kit.fontawesome.com/600f9f1052.js" crossorigin="anonymous"></script>
</body>
</html>