-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.62 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToDoWise - Your Daily TaskList Simplified</title>
<link rel = "icon" href="assets\sticky-note.png">
<link rel = "stylesheet" href="style.css">
<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=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="leftsection">
<div class="headLine">
<div class="icon">
<img src="assets\sticky-note.png">
</div>
<h3><span>ToDoWise</span> - Your Daily TaskList Simplified !</h3>
</div>
<div class="todo">
<h5><i>Complete your tasks before the day runs out...</i></h5>
<ul>
</ul>
</div>
</div>
<div class="rightsection">
<div class="features">
<h5><i>...activities you wouldn't wanna miss upon!</i></h5>
<ul>
<li>add your ToDo
<br>
<input type="text" placeholder="write your task..." id="addToDo"> <button id="addTask">Commit!</button>
</li>
<li>checklist your ToDo
<br>
<input type="text" placeholder="cross t'em out..." id="deleteToDo"> <button id="deleteTask">Done!</button>
</li>
</ul>
</div>
</div>
<script src= "app.js"></script>
</body>
</html>