-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathto-do.html
49 lines (42 loc) · 1.81 KB
/
to-do.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" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/styles.css">
<title>This is a Test</title>
</head>
<body>
<header>
<div class="logo">
<img src="/Pictures/Profile Picture.jpg" alt="">
</div>
<div class="Top-nav">
<a href="index.html">Home</a>
<a href="About-us.html">About Us</a>
<a href="blog.html">Blog</a>
<a href="to-do.html">To Do App</a>
</div>
</header>
<div class="body">
<div class="intro">
<h1>To Do App</h1>
<p>Below is a place to write everything that you need to do!</p>
</div>
</div>
<div class="goals">
<h1>Goals for this app:</h1>
<ul>
<li>field to input things to do </li>
<li>store that info in a dictionary or array, or list or something</li>
<li>be able to see my full list of things all at once</li>
<li>be able to remove things from that list by using a checkmark or delete button or something.</li>
<li>be able to show only one thing at a time so that i dont get overwhelmed</li>
<li>have a calander so i can schedule things to do in advance.</li>
<li>have it know what day is today and the time so that it can tell me what im supposed to be doing acording to the date and time.</li>
<li>have time blocks for certain types of tasks throughout the day</li>
<li>be able to set up recuring times for tasks, such as every 2 weeks, every day, every week, 3 times a week etc. </li>
<li>be able to set it so that when you put multiple things into a certain time block you can have it randomly chose what to do next. (such as under chores: clean clothes, wash dogs, dust, etc so that way its not as mundane.)</li>
</ul>
</div>
</body>
</html>