-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
45 lines (42 loc) · 1.85 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
45
<!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">
<meta property="og:image" content="images/share.png">
<title>Task 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 href="css/style.css " rel="stylesheet">
<link href="css/body.css " rel="stylesheet">
<link href="css/section.css " rel="stylesheet">
<link href="css/list.css " rel="stylesheet">
<link href="css/form.css " rel="stylesheet">
<link href="css/task.css " rel="stylesheet">
<link href="images/icon.svg" rel="icon">
<script defer src="js/script.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<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:wght@300;700&display=swap" rel="stylesheet">
</head>
<body class="body">
<h1 class="body__heading">Lista zadań</h1>
<section class="section">
<h2 class="section__heading">Dodaj nowe zadanie</h2>
<form class="form js-form">
<input class="form__input js-newTask" placeholder="Co jest do zrobienia?">
<button class="form__button">Dodaj zadanie</button>
</form>
</section>
<section class="section">
<header class="section__header">
<h2 class="section__heading">Lista zadań</h2>
<div class="section__buttons js-buttons"></div>
</header>
<ul class="list js-tasks"></ul>
</section>
</body>
</html>