-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
28 lines (26 loc) · 843 Bytes
/
main.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
<!DOCTYPE html>
<link rel="stylesheet" href="/style.css">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo App</title>
</head>
<body>
<div class = "addTodos">
<input type="text" class="addTodo" placeholder="Title...">
<button class="addButton">Додати</button>
</div>
<div class="todoBox">
<input type="checkbox" id="death">
<label for="death">Try to die</label>
<input type="checkbox" id="notdeath">
<label for="notdeath">Try not to die</label>
<input type="checkbox" id="mmr">
<label for="mmr">6000 mmr</label>
<input type="checkbox" id="js">
<label for="js">Js за 3 дня</label>
</div>
<script src="script.js"></script>
</body>
</html>