-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.69 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.69 KB
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.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous"></script>
<script
defer
src="https://use.fontawesome.com/releases/v5.8.1/js/all.js"
integrity="sha384-g5uSoOSBd7KkhAMlnQILrecXvzst9TdC09/VM+pjDTCM+1il8RHz5fKANTFFb+gQ"
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/todos.css">
<title>To-Do</title>
</head>
<body>
<div id="container">
<h1>To-Do List<span id="toggle-form"><i class="fas fa-plus"></i></span></h1>
<input type="text" placeholder="Add new to-do">
<ul>
<li><span><i class="far fa-trash-alt"></i></span> Study</li>
<li><span><i class="far fa-trash-alt"></i></span> Work</li>
<li><span><i class="far fa-trash-alt"></i></span> ???</li>
<li><span><i class="far fa-trash-alt"></i></span> Profit!</li>
</ul>
</div>
<footer id="credits">
<p>
A simple To-Do list that I made during my time at
<a href="https://www.udemy.com/the-web-developer-bootcamp/"> The Web Developer Bootcamp</a>
</p>
<p>Background made with <a href="https://uigradients.com">uiGradients</a></p>
<p>Check my other stuff at <a href="https://github.com/lszanatta">GitHub</a></p>
</footer>
<script src="./assets/js/todos.js"></script>
</body>
</html>