You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Back in the index.html file, add a link to the recipe page you just created. Example: Under the <h1>Odin Recipes</h1> heading, write out the link like so: <a href="recipes/recipename.html">Recipe Title</a>. The text of the link should again be the recipe name.
The href you gave could cause some problem to people cause it caused it to me.
It's better to change it to href="./recipes/recipename.html".
This problem occur also in other chunks of code on the same page.
At least with HTML relative paths, omitting the ./ shouldn't make a difference. HTML treats them the same with or without. I suspect when you did encounter an issue previously, problems were caused by something else without you realising.
Checks
Describe your suggestion
Here in step 4 :
Back in the index.html file, add a link to the recipe page you just created. Example: Under the <h1>Odin Recipes</h1> heading, write out the link like so: <a href="recipes/recipename.html">Recipe Title</a>. The text of the link should again be the recipe name.
The href you gave could cause some problem to people cause it caused it to me.
It's better to change it to href="./recipes/recipename.html".
This problem occur also in other chunks of code on the same page.
Path
Foundations
Lesson Url
https://www.theodinproject.com/lessons/foundations-recipes
(Optional) Discord Name
No response
(Optional) Additional Comments
No response
The text was updated successfully, but these errors were encountered: