-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.19 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
<!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">
<title>Tasks 5</title>
</head>
<body>
<h1>Tasks 5</h1>
<!-- ЗАДАЧА 3 -->
<h2>Задача 3</h2>
<form id="login-form">
<input type="email" name="email" />
<input type="password" name="password" />
<button name="button" type="submit">Login</button>
</form>
<!-- ЗАДАЧА 4 -->
<h2>Задача 4</h2>
<div style="display: flex;">
<button class="counter-button" data-action="increment">Increment</button>
<span class="counter-value" style="margin: 10px">0</span>
<button class="counter-button" data-action="decrement">Decrement</button>
</div>
<!-- ЗАДАЧА 8 -->
<h2>Задача 8</h2>
<form id="task-form">
<input type="text" name="taskName" />
<button type="submit">Добавить</button>
</form>
<ul id="task-list"></ul>
<script src="./tasks.js" type="module"></script>
</body>
</html>