-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (75 loc) · 2.47 KB
/
index.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
<!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>API Recipe Finder</title>
<link rel="stylesheet" href="./style.css" />
<script defer src="./app.js"></script>
</head>
<body>
<div class="Search-section">
<input type="text" required/>
<button>Search</button>
</div>
<div class="Cards-section">
<div class="card">
<div class="card__body">
<img
src="https://media.istockphoto.com/id/1438867572/photo/pav-bhaji-is-a-fast-food-dish-from-india-consisting-of-a-thick-vegetable-curry-served-with.jpg?b=1&s=170667a&w=0&k=20&c=LtLcaJdkBK6KvJ0uacvzTvjh0kV2s_54JflDfxwH9Os="
alt=""
class="card__image"
/>
<h2 class="card__title">Pav Bhaji</h2>
<p class="card__description">
Searching for Maharashtrian food?? Get the authentic food flavour of Maharashtra by following this recipe!!
</p>
</div>
<button class="card__btn">View Recipe</button>
</div>
<div class="card">
<div class="card__body">
<img
src="https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80"
alt=""
class="card__image"
/>
<h2 class="card__title">Pizza</h2>
<p class="card__description">
Are you craving for some Pizza?? Here's an amazing recipe that will satisfy your hunger!!
</p>
</div>
<button class="card__btn">View Recipe</button>
</div>
<div class="card">
<div class="card__body">
<img
src="https://images.unsplash.com/photo-1589302168068-964664d93dc0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80"
alt=""
class="card__image"
/>
<h2 class="card__title">Chicken Biryani</h2>
<p class="card__description">
Still wondering about Chicken or Egg?? Try this mouth watering delicious Chicken recipe at your home!!
</p>
</div>
<button class="card__btn">View Recipe</button>
</div>
<div class="card">
<div class="card__body">
<img
src="https://images.unsplash.com/photo-1586985289071-36f62f55ce44?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80"
alt=""
class="card__image"
/>
<h2 class="card__title">Chocolate Smoothie</h2>
<p class="card__description">
Who doesn't love Chocolates?? Check out this chilled smoothie recipe to refresh your meal!!
</p>
</div>
<button class="card__btn">View Recipe</button>
</div>
</div>
</body>
</html>