-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
36 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Шрифты -->
<link href="https://fonts.googleapis.com/css?family=Lacquer&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700i&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<script type="text/javascript" src="script.js"></script>
<title>To Do List</title>
</head>
<body>
<header>
Create your own to-do list! Let's start!
</header>
<main>
<span class="add-task">
<input id="add-task__text" type="text" name="task" placeholder="Add new task" size="40">
<input id="add-task__button" type="button" name="add" value="Add task">
</span>
<div class="container">
<ul id="tasks" type="none">
<!-- created tasks will be here-->
</ul>
</div>
</main>
</body>
</html>