-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylized-todo-list.html
More file actions
61 lines (59 loc) · 2.18 KB
/
stylized-todo-list.html
File metadata and controls
61 lines (59 loc) · 2.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Styled To-Do List</title>
<link rel="stylesheet" href="stylized-todo-list.css">
</head>
<body>
<div class="todo-container">
<h1>Shay's To-Do List</h1>
<ul class="todo-list">
<li>
<div class="todo-card">
<input type="checkbox" id="make-dinner">
<label for="make-dinner"> Make Dinner</label>
<ul class="nested-list">
<li>
<a href="https://www.loveandlemons.com/easy-dinner-ideas/" class="sub-item-link" target="_blank">60 Easy Dinner Ideas</a>
</li>
</ul>
</div>
</li>
<li>
<div class="todo-card">
<input type="checkbox" id="fold-clothes">
<label for="fold-clothes">Fold Clothes</label>
<ul class="nested-list">
<li>
<a href="https://www.thespruce.com/folding-hacks-that-save-major-closet-and-drawer-space-3017373" class="sub-item-link" target="_blank">6 Folding Techniques to Save Space</a>
</li>
</ul>
</div>
</li>
<li>
<div class="todo-card">
<input type="checkbox" id="study-coding">
<label for="study-coding">Study Coding</label>
<ul class="nested-list">
<li>
<a href="https://www.freecodecamp.org/learn/full-stack-developer" class="sub-item-link" target="_blank">Free Code Camp</a>
</li>
</ul>
</div>
</li>
<li>
<div class="todo-card">
<input type="checkbox" id="shower">
<label for="shower">Shower</label>
<ul class="nested-list">
<li>
<a href="https://www.drteals.com/" class="sub-item-link" target="_blank">Order Dr.Teal's</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</body>
</html>