-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Recipe Radar</title>
<link
rel="icon"
type="image"
href="https://res.cloudinary.com/dblpy3gli/image/upload/v1676028877/icon-for-food-14_jfasfy.png"
/>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body id="body">
<header>
<h1>Recipe Radar</h1>
<h2 id="intro-text">
Confused of what to cook today? Don't worry We've got you Covered!
</h2>
<input
class="search-input"
type="text"
placeholder="Search by category"
/>
<button class="search-btn">Search</button>
</header>
<main>
<h2>Special Meal of the Day</h2>
<section class="random-meal">
<!-- Meal will be inserted here -->
</section>
<h2 id="search-results">Searched Meals</h2>
<section class="searched-meals">
<!-- Meals will be inserted here -->
</section>
</main>
<div class="ingredient-modal">
<!-- Ingredients will be inserted here -->
</div>
</body>
<script src="app.js"></script>
</html>