-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (66 loc) · 2.23 KB
/
index.html
File metadata and controls
68 lines (66 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WhatToEatToday</title>
<link rel="stylesheet" href="./Style/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=Open+Sans:wght@300&display=swap"
rel="stylesheet"
/>
<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=Lato:wght@300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1>What To Eat Today</h1>
</header>
<main>
<form action="#">
<div class="filters">
<div class="search_container">
<div class="search_conatiner_1">
<label class="search_by"> Search: </label>
<input type="text" id="Input_Search" />
</div>
<div class="search_container_2">
<label class="search_by">Diet?</label>
<select name="diet" id="diet">
<option value="yes">yes</option>
<option value="no">no</option>
</select>
</div>
</div>
<div class="button">
<button type="submit" class="submit">Search Food</button>
<div class="error js-error"></div>
</div>
</div>
</form>
<div class="list_of_recipes">
<p class="welcome_text">
Welcome to my Recipe Search website. You can search recipes by name,
nutrients or ingredients.
</p>
</div>
<div class="modal" id="recipeModal">
<div class="modal-content">
<span class="close-button" id="closeModal">×</span>
<h2>Creating instructions</h2>
<div id="recipeDetails">
<!--pop-up for ingredients and instructions-->
</div>
</div>
</div>
</main>
<script src="script/constants.js"></script>
<script src="./script/recipe.js"></script>
</body>
</html>