forked from html-mastery/Project-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-new-item.html
49 lines (41 loc) · 1.49 KB
/
add-new-item.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
<!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>To Do List</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/demo.css">
</head>
<body>
<div class="body">
<header>
<h1>Task <span style="color: blue">List</span></h1>
</header>
<div class="container">
<div class="fixed-column">
<h2>Trip to Pris</h2>
<hr />
<label class="contain"> <spen> Visit Church</spen>
<input type="checkbox" checked="checked" />
<span class="checkmark"></span>
</label>
<label class="contain"> Shopping
<input type="checkbox" />
<span class="checkmark"></span>
</label>
</div>
</div>
</div>
<div class="popup-container" id="popup-container" id="add-new-list-border">
<div class="popup" id="popup">
<h2>Add New Item</h2>
<input type="text" id="card-name" placeholder="Visit famous place" />
<a href="./index.html"><button id="add-card">Add</button></a>
<a href="./add.html"><button id="cancel">Close</button></a>
</div>
</div>
<!-- <div class="flex-container"></div> -->
</body>
</html>