-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 2.09 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do list</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link rel="icon" href="images/to-do-list.png">
<link rel="stylesheet" href="css/form.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/tasks.css">
<link rel="stylesheet" href="css/sections.css">
<script defer src="js/script.js"></script>
</head>
<body>
<body class="todoContainer">
<header>
<h1 class="todoTitle">Lista zadań</h1>
</header>
<section class="todoSection">
<header class="todoSection__header">
<h2 class="todoSection__title">Dodaj nowe zadanie</h2>
</header>
<div class="todoSection__container">
<form class="todoForm js-form">
<input class="todoForm__newItem js-newItem" type="text" placeholder="Co jest do zrobienia?"
autofocus>
<button class="todoForm__button">Dodaj zadanie</button>
</form>
</div>
</section>
<section class="todoSection">
<header class="todoSection__header">
<h2 class="todoSection__title">Lista zadań</h2>
<div class="todoSection__buttonsContainer js-buttons"></div>
</header>
<div class="todoSection__container">
<ul class="todoTasks js-tasks"></ul>
</div>
</section>
</body>
</html>