-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (56 loc) · 1.94 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
53
54
55
56
<!DOCTYPE html>
<html lang="pl">
<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" />
<title>Lista zadań</title>
<link rel="icon" href="images/to-do-list.png" />
<meta property="og:image" content="images/share.png" />
<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 href="css/style.css" rel="stylesheet" />
<link href="css/section.css" rel="stylesheet" />
<link href="css/form.css" rel="stylesheet" />
<link href="css/tasks.css" rel="stylesheet" />
<link href="css/buttons.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<script defer src="js/script.js"></script>
</head>
<body class="body">
<main class="main">
<header class="header">
<h1>Lista zadań</h1>
</header>
<section class="section">
<h2 class="section__header">Dodaj nowe zadanie</h2>
<div class="section__body">
<form class="form js-form">
<input
class="form__newTask js-newTask"
placeholder="Co jest do zrobienia?"
/>
<button class="form__button js-formButton">Dodaj zadanie</button>
</form>
</div>
</section>
<section class="section">
<header class="section__header">
<h2 class="section__title">Lista zadań</h2>
<div class="buttons js-buttons"></div>
</header>
<div class="section__body">
<ul class="tasks js-tasks"></ul>
</div>
</section>
</main>
</body>
</html>