-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe.html
156 lines (151 loc) · 6.49 KB
/
recipe.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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>Recipes</title>
<link rel="stylesheet" href="CSS\recipe.css">
</head>
<body>
<!-- header -->
<header>
</div>
<!-- navabar -->
<div class="navbar">
<a href="home.html"><p>Home</p></a>
<a href="country.html"><p>Country Search</p></a>
<a href="nutrition.html"><p>Nutrition</p></a>
<a href="beverage.html"><p>Beverage</p></a>
<a href="category.html"><p>Category Search</p></a>
<a href="recipe.html"><p>Recipes</p></a>
</div>
<!-- searchbar -->
<div class="search-bar">
<input type="text" placeholder="Search here">
</div>
</header>
<!-- about landing -->
<section>
<div class="land-section" id="bev_land">
<div class="land-section-image">
<img src="assets/recipe_display.png">
</div>
<div class="land-section-written">
<h3><b>   Click on each card to<br>see the Recipes in detail</b></h3>
</div>
</div>
</section>
<!-- Cocktail showcase cards -->
<section>
<div class="country-search" id="country-search">
<!-- right side cards -->
<div class="country-search-image-right">
<div class="card1 cardr">
<div class="card1-image cardr-image">
<img src="assets/recipe_bloodymary.png" alt="photo">
</div>
<div class="card1-name name">
<div class="card1-name-written cardr-written">
<p class="dish-name">Bloody Mary Cocktail</p>
<!-- <p class="dish-specification">the cooking style and traditional food dishes<br>prepared in the US</p> -->
<div class="land-section-buttons">
<a href="bloodymary.html">
<button class="scroll">FULL RECIPE</button>
<button class="scroll-border"></button>
</a>
</div>
</div>
</div>
</div>
<div class="card2 cardr">
<div class="card2-image cardr-image">
<img src="assets/recipe_alfredo.png" alt="photo">
</div>
<div class="card2-name name">
<div class="card2-name-written cardr-written">
<p class="dish-name">Fettuccine Alfredo</p>
<!-- <p class="dish-specification"> highlights the local culture, making these<br>dishes favorites for very good reasons.</p> -->
<div class="land-section-buttons">
<a href="alfredo.html">
<button class="scroll">FULL RECIPE</button>
<button class="scroll-border"></button>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- left side cards -->
<div class="beverage-search-image-left">
<div class="card1 cardl">
<div class="card1-image cardl-image">
<img src="assets/recipe_kabab.png" alt="photo">
</div>
<div class="card1-name name">
<div class="card1-name-written cardl-written">
<p class="dish-name">Chicken Kabab</p>
<!-- <p class="dish-specification">Based on rice, vegetables, seafood and meats.</p> -->
<div class="land-section-buttons">
<a href="kebab.html">
<button class="scroll">FULL RECIPE</button>
<button class="scroll-border"></button>
</a>
</div>
</div>
</div>
</div>
<div class="card2 cardl">
<div class="card2-image cardl-image">
<img src="assets/recipe_panini.png" alt="photo">
</div>
<div class="card2-name name">
<div class="card2-name-written cardl-written">
<p class="dish-name">Panini Sandwich</p>
<!-- <p class="dish-specification">food and cooking practices of<br>Australia and its inhabitants.</p> -->
<div class="land-section-buttons">
<a href="panini.html">
<button class="scroll">FULL RECIPE</button>
<button class="scroll-border"></button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer>
<div class="footer">
<div class="footer-column1">
<img src="assets/logo.png" alt="logo">
</div>
<div class="footer-logo-name">
<p><span>F</span></p><p>oodo</p><p><span>S</span></p><p>phere</p>
</div>
<div class="footer-column3">
<div class="quote">
<h2>"One cannot Think well, Love well & Sleep well if one hasn't Dined well 😁"</h2>
</div>
</div>
<div class="footer-column4">
<h2>Get in touch</h2>
<a>Email us at:</a>
<br>
<a>[email protected]</a>
<br>
<a>Give a call on:</a>
<br>
<a>+91 9319080015</a>
</div>
</div>
</footer>
</body>
</html>
<!-- <div class="land-section-buttons"> -->
<!-- <a href="https://www.epicurious.com/"> -->
<!-- <button class="scroll">SCROLL DOWN</button> -->
<!-- <button class="scroll-border"></button> -->
<!-- </a> -->
<!-- </div> -->