Skip to content
Open
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
83 changes: 77 additions & 6 deletions index.html
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,80 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lists Lab</title>
</head>
<body>
<!-- Write your HTML in this file -->
</body>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Lists Lab</title>
</head>
<body>

<ul>
<li>2 slices of bread</li>
<li>1 slice of cheese</li>
<li>
4 slices of cheese
<ul>
<li>Cheddar</li>
<li>Mozzarella</li>
<li>Pepper Jack</li>
</ul>
</li>
</ul>

<ol>
<li>Spread butter on bread and frying pan</li>
<li>Place one slice of bread in the pan</li>
<li>Add cheese on top of the bread</li>
<li>Place the second slice of bread on top</li>
<li>Flip and cook until golden brown</li>
</ol>

</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top 5 Favorite Foods</title>
</head>
<body>
<h3>Top 5 Favorite Foods</h3>
<ol>
<li>Grilled Cheese</li>
<li>Sushi</li>
<li>Banh Mi</li>
<li>Tomato Soup</li>
<li>Baba Ghanoush</li>
</ol>
</body>
</html>


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top 5 Favorite Foods</title>
</head>
<body>
<h3>Top 5 Favorite Foods</h3>
<ol>
<li>Grilled Cheese</li>
<li>Sushi</li>
<li>Banh Mi</li>
<li>Tomato Soup</li>
<li>Baba Ghanoush</li>
</ol>

<h3>Steps to Make a Grilled Cheese</h3>
<ol>
<li>Spread butter on bread and frying pan</li>
<li>Place bread in frying pan and fry</li>
<li>Add cheese on top of bread</li>
<li>Cover with second slice of bread</li>
<li>Turn over and fry for 2 minutes</li>
</ol>
</body>
</html>