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
|
# odin-recipes
|
||||||
|
|
||||||
A basic website linking to recipes
|
A basic website linking to recipes
|
||||||
|
|
||||||
|
# What has been used?
|
||||||
|
|
||||||
|
Images, links, unordered and ordered lists, emmet
|
|
@ -8,8 +8,10 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Odin Recipes</h1>
|
<h1>Odin Recipes</h1>
|
||||||
<a href="recipes/potatoes.html">Potatoes</a>
|
<ul>
|
||||||
<a href="recipes/lasagna.html">Lasagna</a>
|
<li><a href="recipes/potatoes.html">Potatoes</a></li>
|
||||||
<a href="recipes/pizza.html">Pizza</a>
|
<li><a href="recipes/lasagna.html">Lasagna</a></li>
|
||||||
|
<li><a href="recipes/pizza.html">Pizza</a></li>
|
||||||
|
</ul>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -7,6 +7,7 @@
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<a href="../index.html">Go to homepage</a>
|
||||||
<h1>Lasagna</h1>
|
<h1>Lasagna</h1>
|
||||||
<img src="../img/lasagnajpg" alt="Lasagna">
|
<img src="../img/lasagnajpg" alt="Lasagna">
|
||||||
<h2>Description</h2>
|
<h2>Description</h2>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<a href="../index.html">Go to homepage</a>
|
||||||
<h1>Pizza</h1>
|
<h1>Pizza</h1>
|
||||||
<img src="../img/pizza.jpg" alt="Pizza">
|
<img src="../img/pizza.jpg" alt="Pizza">
|
||||||
<h2>Description</h2>
|
<h2>Description</h2>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<a href="../index.html">Go to homepage</a>
|
||||||
<h1>Potatoes</h1>
|
<h1>Potatoes</h1>
|
||||||
<img src="../img/potatoes.jpg" alt="Peeled potatoes">
|
<img src="../img/potatoes.jpg" alt="Peeled potatoes">
|
||||||
<h2>Description</h2>
|
<h2>Description</h2>
|
||||||
|
|
Loading…
Reference in New Issue