-
Notifications
You must be signed in to change notification settings - Fork 0
/
Recipe1.html
56 lines (47 loc) · 1.64 KB
/
Recipe1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/recipe.css">
<title>Document</title>
</head>
<body>
<!-- Nav Bar search bar still needed -->
<h1>
<nav>
<!-- logo -->
<a href="./index.html"><img height="100" src="./images/logo.png" alt="Chaos Recpies Just The Recpie"></a>
<!-- buttons -->
<ul>
<!-- needs to be in backwards order ¯\_(ツ)_/¯ -->
<li><a href="./About.html">About</a></li>
<li><a href="./SubmitRecipe.html">Submit Recpie</a></li>
<li><a href="./index.html">Home</a></li>
</ul>
</nav>
<section>
<div class="recipe">
<!-- recipe img -->
<img src="./images/recipeimg.jpg" alt="">
<!-- recipe title -->
<div>
<h2>RECIPE NAME</h2>
</div>
<!-- ingredints -->
<p class="ingredints">
<h3 class="ingredints">Ingredints</h3>
<ul class="ingredints">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</p>
<h3>Instructions</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Delectus qui porro vitae architecto magni, obcaecati facere error officiis minus nisi, quae voluptates deserunt? Earum quidem beatae, reiciendis ut dicta vel?</p>
</div>
</section>
</h1>
</body>
</html>