-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToDo.html
39 lines (39 loc) · 1.19 KB
/
ToDo.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
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styleToDo.css" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic"
rel="stylesheet"
/>
<title>MarekToDoList</title>
</head>
<body>
<div class="conteiner">
<header>
<h1 class="logo">My To Do List</h1>
</header>
<form class="toDo">
<div class="text">
<input class="toDoText" type="text" />
<button class="toDoBtn" type="submit">
<i class="far fa-plus-square"></i>
</button>
</div>
</form>
<div class="myToDo">
<ul class="toDo-List"></ul>
</div>
</div>
<script src="appToDo.js"></script>
</body>
</html>