-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 3.38 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Halal Meals Recipe</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<h1>What Do You Want to Cook?</h1>
<div class="mainContainer">
<select>
<option value="" selected="selected">Choose a meal:</option>
<optgroup label="RICE MEALS">
<option>Japanese Gohan Rice</option>
<option>Jerk Chicken with Rice & Peas</option>
</optgroup>
<optgroup label="PASTA MEALS">
<option>Mediterranean Pasta</option>
</optgroup>
<optgroup label="CHICKEN MEALS">
<option>Chicken Handi</option>
<option>Chicken Congee</option>
<option>Tandoori Chicken</option>
<option>Chicken Couscous</option>
<option>Brown Stew Chicken</option>
<option>Chicken Karaage</option>
<option>Katsu Chicken Curry</option>
<option>Nutty Chicken Curry</option>
<option>General Tso's Chicken</option>
<option>Kentucky Fried Chicken</option>
<option>Teriyaki Chicken Casserole</option>
<option>Chicken Quinoa Greek Salad</option>
<option>Chicken Enchilada Casserole</option>
<option>Chicken Fajita Mac and Cheese</option>
</optgroup>
<optgroup label="VEGETARIAN MEALS">
<option>Vegetarian Chilli</option>
<option>Vegetarian Casserole</option>
</optgroup>
<optgroup label="VEGAN MEALS">
<option>Vegan Lasagna</option>
<option>Vegan Chocolate Cake</option>
</optgroup>
<optgroup label="BEEF MEALS">
<option>Beef Lo Mein</option>
<option>Oxtail with Broad Beans</option>
<option>Beef Rendang</option>
<option>Minced Beef Pie</option>
<option>Beef Sunday Roast</option>
<option>Braised Beef Chilli</option>
<option>Massaman Beef Curry</option>
<option>Jamaican Beef Patties</option>
<option>Beef Brisket Pot Roast</option>
<option>Corned Beef and Cabbage</option>
<option>Beef Banh Mi Bowls with Sriracha Mayo</option>
</optgroup>
<optgroup label="LAMB MEALS">
<option>Lamb Tagine</option>
<option>Lamb Biryani</option>
<option>Lamb Rogan Josh</option>
<option>Tunisian Lamb Soup</option>
<option>Lamb and Potato pie</option>
<option>Stuffed Lamb Tomatoes</option>
<option>Lamb Tzatziki Burgers</option>
<option>Lamb and Lemon Souvlaki</option>
<option>Lamb tomato and sweet spices</option>
</optgroup>
</select>
<button type="button" name="button">Get Recipe</button>
</div>
<div class="mealCard">
<img src="" alt="">
<h2 class="mealName"></h2>
<h4 class="video"></h4>
</div>
<h3 class="ingredient"></h3>
<ul class="ingredientsList"></ul>
<h3 class="instructions"></h3>
<p class="instructionGuide"><p>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>