-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (85 loc) · 2.73 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Gluten&family=Lobster&family=Montserrat&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap"
rel="stylesheet"
/>
<title>To-Do-App</title>
</head>
<body>
<div class="main-container">
<div class="sub-container">
<div class="heading-logo">
<h1>My To-Do List</h1>
<span class="material-icons outline">
check_box_outline_blank
<span class="material-icons check-mark"> done </span>
</span>
</div>
<div class="user-input">
<div class="description">
<p class="invalid-input"></p>
<input type="text" placeholder="Add New ..." class="input-bar" />
</div>
<div class="submit-buttons">
<input
type="text"
id="date-button"
class="pointer"
placeholder="To be Completed on ... 📆"
/>
<input type="submit" value="Add" id="add-button" class="pointer" />
</div>
</div>
</div>
<div class="sub-container left-border">
<div class="filter-sort">
<div class="filter">
<label for="filter"><span> Filter:</span></label>
<select name="filter" id="filter">
<option value="All">All</option>
<option value="completed">completed</option>
<option value="uncompleted">uncompleted</option>
</select>
</div>
<div class="sort">
<label for="sort"><span>Sort:</span></label>
<select name="sort" id="sort">
<option value="1">Ascending</option>
<option value="2">Descending</option>
</select>
</div>
</div>
<div class="tasks"></div>
<div class="quotes-section">
<p class="motivation">
<q>
<em
>You know that one thing you’ve always dreamed about? <br />
Write it down.
<br />Then take the first step. Today.
</em>
</q>
<br />
<br />
– Petra Poje
</p>
</div>
</div>
</div>
<script src="myscript.js"></script>
</body>
</html>