Recipes now in unordered list, README, Go back
Added what has been used, homepage links
This commit is contained in:
parent
eb02cc90d9
commit
94b079afbc
|
@ -1,3 +1,7 @@
|
|||
# odin-recipes
|
||||
|
||||
A basic website linking to recipes
|
||||
|
||||
# What has been used?
|
||||
|
||||
Images, links, unordered and ordered lists, emmet
|
|
@ -8,8 +8,10 @@
|
|||
</head>
|
||||
<body>
|
||||
<h1>Odin Recipes</h1>
|
||||
<a href="recipes/potatoes.html">Potatoes</a>
|
||||
<a href="recipes/lasagna.html">Lasagna</a>
|
||||
<a href="recipes/pizza.html">Pizza</a>
|
||||
<ul>
|
||||
<li><a href="recipes/potatoes.html">Potatoes</a></li>
|
||||
<li><a href="recipes/lasagna.html">Lasagna</a></li>
|
||||
<li><a href="recipes/pizza.html">Pizza</a></li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
|
@ -7,6 +7,7 @@
|
|||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<a href="../index.html">Go to homepage</a>
|
||||
<h1>Lasagna</h1>
|
||||
<img src="../img/lasagnajpg" alt="Lasagna">
|
||||
<h2>Description</h2>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<a href="../index.html">Go to homepage</a>
|
||||
<h1>Pizza</h1>
|
||||
<img src="../img/pizza.jpg" alt="Pizza">
|
||||
<h2>Description</h2>
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<a href="../index.html">Go to homepage</a>
|
||||
<h1>Potatoes</h1>
|
||||
<img src="../img/potatoes.jpg" alt="Peeled potatoes">
|
||||
<h2>Description</h2>
|
||||
|
|
Loading…
Reference in New Issue