-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 2.13 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
<!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>Javascript + DOM</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="checkbox_style.css">
<link rel="stylesheet" type="text/css" href="style_mobile.css">
</head>
<body>
<div class="container-wrap">
<div class="container">
<h2 class="date" id="date1">Day, D</h2>
<h2 class="date" id="date2">Month YYYY</h2>
<h3>Get it done today!</h3>
<div class="input-wrapper">
<input id="userinput" type="text" placeholder="enter new task..">
<button id="enter-btn">Add</button>
</div>
<ul>
<li>
<label class="checkbox-container">Brush your teeth
<input type="checkbox">
<span class="checkmark"></span>
</label>
<button id="delete">delete</button>
</li>
<li>
<label class="checkbox-container">Go for a walk
<input type="checkbox">
<span class="checkmark"></span>
</label>
<button id="delete">delete</button>
</li>
<li>
<label class="checkbox-container">Do the laundry
<input type="checkbox">
<span class="checkmark"></span>
</label>
<button id="delete">delete</button>
</li>
<li>
<label class="checkbox-container">Clean your room
<input type="checkbox">
<span class="checkmark"></span>
</label>
<button id="delete">delete</button>
</li>
<li>
<label class="checkbox-container">Study english
<input type="checkbox">
<span class="checkmark"></span>
</label>
<button id="delete">delete</button>
</li>
<!-- <li>Go for a walk</li><button id="delete">delete</button><br>
<li>Do the laundry</li><button id="delete">delete</button><br>
<li>Clean your room</li><button id="delete">delete</button><br>
<li>Study english</li><button id="delete">delete</button><br> -->
</ul>
</div>
</div>
<script type="text/javascript" src="date.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>