- Course: The Odin Project - Foundations Course
- Exercise: Foundations Course - Project: Recipes
It’s time to practice all of the HTML knowledge you have acquired. In this project, you are going to build a basic recipe website.
The website will consist of a main index page which will have links to a few recipes. The website won’t look very pretty by the time you’ve finished. Not unless you’re into brutalist web design, that is.
But it’s important to keep in mind that this project is just to build your HTML chops; we will revisit this project in the future to style it up with CSS.
- Within the
odin-recipes
directory, create anindex.html
file. - Fill it out with the usual boilerplate HTML and add an
h1
heading “Odin Recipes” to the body.
- Create a new directory within the
odin-recipes
directory and name it recipes. - Create a new HTML file within the
recipes
directory and name it after the recipe it will contain. For examplelasagna.html
. You can use the name of your favorite dish or, if you need some inspiration, you can find a recipe to use here. - For now, just include an
h1
heading with the recipe’s name as its content. - Back in the
index.html
file, add a link to the recipe page you just created. Example: Under theOdin Recipes
heading, write out the link like so:href="recipes/recipename.html">Recipe Title<
. The text of the link should again be the recipe name.
- An image of the finished dish under the h1 heading that you added earlier. You can find images of the dish on Google or the recipe site we linked to earlier.
- Under the image, it should have an appropriately sized “Description” heading followed by a paragraph or two describing the recipe.
- Under the description, add an “Ingredients” heading followed by an unordered list of the ingredients needed for the recipe.
- Finally, under the ingredients list, add a “Steps” heading followed by an ordered list of the steps needed for making the dish.
- Add two more recipes with identical page structures to the recipe page you’ve already created.
- Don’t forget to link to the new recipes on the index page. Also, consider putting all the links in an unordered list so they aren’t all on one line.
ul li a href="recipes/yourrecipe.html">Recipe Title 1< /a /li li a href="recipes/yourrecipe.html">Recipe Title 2< /a /li li a href="recipes/yourrecipe.html">Recipe Title 3< /a /li /ul
Your links won’t be flashy, but for now just focus on building them out.