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
32 changes: 32 additions & 0 deletions dinner/loaded_baked_potato.html
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there should be a home button that allows the user to go back to the homepage (see an existing page on how to implement this)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello, I apologize for that. I wasn't aware of the home button requirement because I just implemented it now in my second commit!

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Loaded Baked Potato</title>
</head>
<body>
<h1>Loaded Baked Potato Dinner</h1>
<a href="../index.html">return to home page</a>
<h2>ingredients</h2>
<ul>
<li>Potato</li>
<li>Cheese</li>
<li>Butter</li>
<li>Sour Cream</li>
<li>Green Onions</li>
<li>Bacon Bits</li>
</ul>
<br />

<h2>cooking steps</h2>
<ol>
<li>Microwave the potato for 5-8 minutes</li>
<li>Cut open the potato</li>
<li>Spread butter on the potato</li>
<li>Add all of your toppings to the potato</li>
<li>Enjoy!</li>
</ol>
<br />
</body>
</html>
Loading