-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipeone.html
116 lines (107 loc) · 5.01 KB
/
recipeone.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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">
<title>food recipe card for blogpost</title>
<!--custom page css file link-->
<link rel="stylesheet" href="recipe.css">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/css/lightgallery.min.css">
<!-- custom main css file link -->
<link rel="stylesheet" href="recipe.css">
</head>
<body>
<section class="header">
<a href="#" class="logo"> <i class="fas fa-utensils"></i> Yummy Bolgs </a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="aboutus.html">about</a>
<a href="index.html">food</a>
<a href="index.html">gallery</a>
<a href="index.html">Recipes</a>
<a href="index.html">Feedback</a>
<a href="index.html">latest</a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<!-- header section ends -->
<div class="card">
<div class="col-1">
<div class="author">Recipe by:Ambika</div>
<div class="recipe-name">Egg Waffles With Romesco And Goat Cheese<br>Recipe</div>
<div class="description">These last few weeks I have been working hard<br> on a new brunch recipe for you all.
Egg Waffles with Romesco and Goat Cheese! Light puffy scrambled eggs
loaded with lots of cheese, veggies,bacon (if you want),<br> romesco sauce,and any other toppings you can imagine. </div>
<div class="line">---------------------------------------------------------------------------------------------------------------</div>
<div class="ing">Ingredients</div>
<div class="ingList">
<ul>
<li> 4 eggs</li>
<li> 1/2 cups frozen hashbrowns (or just a grated potato works, too)</li>
<li> 1/4 cup bacon or pancetta or cooked sausage (optional)</li>
<li> 1/4 cup shredded cheese</li>
<li> a few shakes of garlic powder</li>
<li> 1/2 teaspoon salt</li>
<li> 1/2 cup spinach, torn or cut into small pieces (optional)</li>
<li> a couple little pieces of cheddar cheese to put on top (for extra cheesy-golden-brown spots)</li>
</ul>
</div>
</div>
<div class="col-2">
<br><br>
<img src="images/Egg-Waffles.jpg" alt="">
</div>
<div class="col-3">
<div class="instructions">
Instructions
<div class="insList">
<ol>
<li>Mix the base ingredients together for your egg waffles.</li>
<br>
<li>Pour about 1/2-3/4 cup onto a nonstick waffle maker <br>(depending on the size of yours).
I usually spray mine with<br>
cooking spray, but that isn’t always necessary if the nonstick is really good.</li>
<br>
<li>Place the cheese chunks on top and put the lid down.<br>
When the light goes off to signal that it’s done,<br>
check that the eggs are cooked, veggies are soft, and cheese<br>
is golden on top. Remove carefully to a plate.<br>
(Mine is usually golden with soft veggies in just 1-2 minutes,<br>
but if yours isn’t done yet, just flip it or give it another minute.)</li>
<br>
<li>
Top with all your toppings! I like goat cheese and pepper and<br>
garlic confit, romesco, avocado, and chives, and lots of salt and<br>
pepper. My little girls like ketchup. We all win!
</li>
</li>
</ol>
</div>
</div>
</div>
<div class="col-4">
<br>
<img src="images/Egg-Waffles-3.jpg" alt="">
</div>
<div class="col-5">
<table class="info">
<tr>
<td><h1>Type:</h1><h2>Non Veg</h2></td>
<br>
<td><h1>Time:</h1><h2>10 mins</h2></td>
<td><h1>Cuisine:</h1><h2>American</h2></td>
<td><h1>Yiled:</h1><h2>3-4 Eggs</h2></td>
<td><h1>Category:</h1><h2>Breakfast</h2></td>
</tr>
</table>
</div>
<div class="col-6">
February 22, 2022
</div>
</div>
</body>
</html>