-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (24 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css" rel="stylesheet"></link>
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/todos.css">
<title>Document</title>
<body>
<div id="container">
<h1>To-Do List <span id="toggle_button"><i class="fas fa-plus"></i></span></h1>
<input type="text" placeholder="add new todo">
<ul>
<li> <span><i class="far fa-trash-alt"></i></span> Go to dance classes</li>
<li> <span><i class="far fa-trash-alt"></i></span> Buy new bicycle</li>
<li> <span><i class="far fa-trash-alt"></i></span> Go for a walk</li>
</ul>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script>
<script src="assets/js/todos.js"></script>
</body>
</html>