Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Fun with Lists/3.1 Add a Un-Ordered List.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
<html>
<body>
<h1>My Shopping List</h1>
<!-- Add your Code Below this Line -->
<!-- Add your own shopping items in an unordered list -->
<!-- Add your Code Above this Line -->
<ul>
<li>Apples</li>
<li>Bread</li>
<li>Milk</li>
<li>Eggs</li>
</ul>
</body>
</html>
5 changes: 5 additions & 0 deletions Fun with Lists/3.3 Add a nested Un-ordered list.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ <h1>My Shopping List</h1>
<li>Grocery Items</li>
<li>Dairy Products</li>
<!-- Add your own shopping items in a nested list -->
<ul>
<li>Apples</li>
<li>Bread</li>
<li>Milk</li>
</ul>
<ul>
</body>
</html>