-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipefour.html
104 lines (96 loc) · 4.28 KB
/
recipefour.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
<!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:Akancha</div>
<div class="recipe-name">The Merry Mocktail<br>Recipe</div>
<div class="description">Everyone needs a good fancy fun mocktail in their life –<br>
especially during the holidays. Herby, zingy rosemary-infused simple syrup,<br>
sweet tart pomegranate juice, bubbly fizz, and fresh lime squeezes. Holiday magic!</div>
<div class="line">---------------------------------------------------------------------------------------------------------------</div>
<div class="ing">Ingredients</div>
<div class="ingList">
<ul>
<li>4 cups water</li>
<li>4 cups sugar</li>
<li>(2) .5 oz packages fresh rosemary</li>
<li>optional: 4-5 whole cloves</li>
<li>2–3 ounces rosemary simple syrup</li>
<li>2–3 ounces pomegranate juice </li>
<li>2–3 ounces club soda with a squeeze of fresh lime </li>
</ul>
</div>
</div>
<div class="col-2">
<br><br>
<img src="images/Merry-Mocktail-1.jpg" alt="">
</div>
<div class="col-3">
<div class="instructions">
Instructions
<div class="insList">
<ol>
<li>Heat the water, sugar, rosemary, and cloves in a saucepan over medium high heat.<br>
Bring to a low boil and let everything simmer for 5-10 minutes until the sugar has<br>
fully dissolved. Pour through a fine mesh strainer to remove the cloves and rogue<br>
rosemary leaves. Transfer to glass jars and store in the fridge for 2 weeks.<br>
(I often stick a sprig of rosemary in there so it keeps getting more intense.)</li>
<br>
<li>Pour your desired ratios of rosemary syrup, pomegranate juice,<br>
and limey bubbly water over an ice ball into a glass. Stir gently,<br>
taste and adjust, and enjoy. </li>
</ol>
</div>
</div>
</div>
<div class="col-4">
<br>
<img src="images/Merry-Mocktail-2.jpg" alt="">
</div>
<div class="col-5">
<table class="info">
<tr>
<td><h1>Type:</h1><h2>Mocktail</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>single serving</h2></td>
<td><h1>Category:</h1><h2>Drinks</h2></td>
</tr>
</table>
</div>
<div class="col-6">
March 18th, 2022
</div>
</div>
</body>
</html>