-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (87 loc) · 2.82 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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="styles.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/44dc052fa7.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inconsolata&family=Nunito+Sans&family=Smooch&family=Short+Stack&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h6 class="h6 mt-2 ms-1">
<a href="#" id="theme">Dark mode?</a>
</h6>
<h5 class="h5 d-flex justify-content-end me-2" id="date">
Thursday 3.41 PM
<br />
15/09/2022
</h5>
<div class="container">
<h1 class="h1 d-flex justify-content-center my-5">To do list</h1>
<form id="new-task-form">
<input
type="text"
id="new-task-input"
placeholder="What do you have planned?"
/>
<input type="submit" id="new-task-submit" value="Add task" />
</form>
<main>
<section class="task-list">
<h3 class="h3">Tasks</h3>
<div id="tasks">
<!--
<div class="task">
<button class="done">
<i class="fa-regular fa-square"></i>
</button>
<div class="content">
<input
type="text"
class="text"
value="My shiny tasks"
maxLength = "70"
readonly
/>
</div>
<div class="actions">
<button class="edit"><i class="fa-solid fa-pencil"></i></button>
<button class="delete">
<i class="fa-solid fa-circle-xmark"></i>
</button>
</div>
</div>
-->
</div>
</section>
</main>
<div class="foot-notes d-flex justify-content-around">
<h5 class="h5 subnotes text-center">
<div class="mt-1">NOTES</div>
<textarea name="notes" class="notes mt-2"></textarea>
</h5>
<h5 class="h5 subnotes text-center">
<div class="mt-1">IMPORTANT</div>
<textarea name="important" class="notes mt-2"></textarea>
</h5>
</div>
</div>
<script src="script.js"></script>
</body>
</html>