-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes.html
95 lines (77 loc) · 3.39 KB
/
recipes.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Katie. Project A: Culinary Creations -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- additional metadata-->
<meta name="author" content="Katie">
<meta name="description" content="culinary creations">
<link rel="stylesheet" href="/c-style.css">
<title>Culinary Creations Recipes</title>
</head>
<body>
<header>
<div class= "header">
<div class= "hdr">
<a href="/index.html">culinary creations</a>
</div> <!-- .hdr -->
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a class="current-page" href="/recipes.html">Recipes</a></li>
</ul>
</nav>
</div> <!-- .header -->
</header>
<main>
<div id="recipes">
<div class="r-section">
<div class="preview">
<img src="/wimages/macncheese.webp" alt="mac n cheese">
<h3>Vegetable Mac N Cheese</h3>
<p>A creamy macaroni and cheese recipe with sauteed vegetables of choice.</p>
<div class="space"><a class="btn rust" href="/recipes/mac.html">Get the Recipe</a></div>
</div>
<div class="preview">
<img src="/wimages/tacosalad.webp" alt="taco salad">
<h3>Potato Taco Salad</h3>
<p>A blend of seasoned potato cubes with chips, queso, onion, and other vegetables to mix in.</p>
<div class="space"><a class="btn brown" href="/recipes/salad.html">Get the Recipe</a></div>
</div>
<div class="preview">
<img src="/wimages/cookedpierogies.webp" alt="pierogies">
<h3>Homemade Pierogies</h3>
<p>Simple, easy to make pierogies. Made from scratch and tossed with onion for a brighter flavor. </p>
<div class="space"><a class="btn brown" href="/recipes/pierogies.html">Get the Recipe</a></div>
</div>
<div class="preview">
<img src="/wimages/bread.webp" alt="bread">
<h3>Sourdough Bread & Cheese Spread</h3>
<p>A classic sourdough from a starter paired with an assorment of cheeses.</p>
<div class="space"><a class="btn rust" href="/recipes/bread.html">Get the Recipe</a></div>
</div>
<!-- .previews -->
</div> <!-- .r-section -->
</div> <!-- #recipes -->
</main>
<footer>
<div class= "footer">
<div class= "ftr">
<h3>Have Questions?</h3>
<h4>Contact us at:
<div class="m-bold">[email protected]</div>
</h4>
</div> <!-- .ftr -->
<nav id="ftr-links">
<ul>
<li><a class="h-bold" href="/index.html">culinary creations</a></li>
<li><a href="/index.html">Home</a></li>
<li><a href="/recipes.html">Recipes</a></li>
</ul>
</nav>
</div> <!-- .footer -->
</footer>
</body>
</html>