-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (66 loc) · 2.07 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0px;
padding: 0px;
}
body {
background-color: rgb(175, 168, 168);
color: white;
}
div{
min-width: 300px;
width: 40%;
margin: 5vh auto;
background-color: rgb(68, 104, 124);
border: 4px solid white;
padding: 30px 60px;
text-align: center;
}
div ul{
list-style: none;
}
div li{
margin: 10px auto;
padding: 10px;
background-color: rgb(33, 43, 53);
}
div li button{
float: right;
}
</style>
</head>
<body>
<div>
<h1>In house</h1>
<ul class="ToDoList" data-list_name="homework">
<input type="text"><input type="submit" value="NEW TASK">
<li>make a soup<button>USUŃ</button></li>
<li>clean the bathroom<button>USUŃ</button></li>
<li>vacuum the room<button>USUŃ</button></li>
<li>English learning<button>USUŃ</button></li>
<li>JS learning<button>USUŃ</button></li>
</ul><br>
</div>
<div>
<h1>In work</h1>
<ul class="ToDoList" data-list_name="homework2">
<input type="text"><input type="submit" value="NEW TASK">
<li>make a project: "To do list"<button>USUŃ</button></li>
<li>fix the banner<button>USUŃ</button></li>
<li>learn OOP<button>USUŃ</button></li>
<li>task at work 3<button>USUŃ</button></li>
<li>task at work 4<button>USUŃ</button></li>
<li>task at work 5<button>USUŃ</button></li>
<li>task at work 6<button>USUŃ</button></li>
</ul>
</div>
</body>
<script src="main.js"></script>
</html>