-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (50 loc) · 1.91 KB
/
index.html
File metadata and controls
57 lines (50 loc) · 1.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe App</title>
<!-- CSS -->
<link rel="stylesheet" href="./src/css/style.css">
<!-- ICONS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- GOOGLE FONTS -->
<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=Oswald:wght@200..700&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap"
rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Recipe App</h1>
<div class="search-container">
<form id="search-form">
<label for="search-bar"></label>
<input type="text" id="search-bar" placeholder="Search for a dish...">
<button type="submit" id="submit">Search</button>
</form>
</div>
<!-- <div class="filter-container">-->
<!-- <label for="filter-dropdown"></label>-->
<!-- <select id="filter-dropdown">-->
<!-- <option value="">All</option>-->
<!-- <option value="cuisine1">Cuisine 1</option>-->
<!-- <option value="cuisine2">Cuisine 2</option>-->
<!-- </select>-->
<!-- </div>-->
<div id="recipe-results">
<!-- Populate Search Results Here -->
</div>
<h2>Favorites</h2>
<div id="favorite-recipes">
<!-- Favorite Recipes Populate Here -->
</div>
<div id="recipe-details" style="display:none;">
<!-- Recipes Populate Here -->
</div>
</div>
<script src="./src/main.js" type="module"></script>
</body>
</html>