-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (73 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
<!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>Mad Archer's Cookbook</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link rel="stylesheet" href="Skeleton-2.0.4/css/skeleton.css">
<!-- 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=Lobster&family=Outfit&family=Raleway&family=Staatliches&display=swap" rel="stylesheet">
<!-- Map APIs -->
<script src="https://api.mqcdn.com/sdk/place-search-js/v1.0.0/place-search.js"></script>
<link type="text/css" rel="stylesheet" href="https://api.mqcdn.com/sdk/place-search-js/v1.0.0/place-search.css" />
<script src="https://api.mqcdn.com/sdk/mapquest-js/v1.3.2/mapquest.js"></script>
<link type="text/css" rel="stylesheet" href="https://api.mqcdn.com/sdk/mapquest-js/v1.3.2/mapquest.css" />
<!-- CSS files -->
<link rel="stylesheet" href="./assets/css/mapStyle.css">
<link rel="stylesheet" href="./assets/css/skeletonStyle.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<h2 class="title">Mad Archer's Cookbook</h2>
<h3 class="tagline">Take aim at your next meal!</h3>
<!-- Meals -->
<div class="meal-wrapper">
<div class="meal-search">
<!-- Search Box for Meals-->
<div class="meal-search-box">
<input type="text" class="search-content" placeholder="Enter an ingredient" id="search-input">
<button type="submit" class="search-button btn" id="search-button">
<i class="fas fa-bullseye"></i>
</button>
</div>
</div>
<!-- Where the possible recipe cards go -->
<div class="meal-result">
<h2 class="title">Mad Archer Finds:</h2>
<div id="meal">
</div>
</div>
</div>
<div class="selected-recipe">
<!-- recipe close button -->
<button type="button" class="btn recipe-close-button" id="recipe-close-button">
<i class="fas fa-times"></i>
</button>
<!-- when the user selects a recipe -->
<div class="selected-recipe-info">
</div>
</div>
<div class="past-ingredients">
<h2>Most Recent Searches:</h2>
<ul></ul>
</div>
<!-- The map -->
</br>
</br>
<div class="map-description">
<h3>Need more ingredients? The Mad Archer can point you in the direction of the nearest grocery stores!</h3>
</div>
</br>
<input type="search" id="map-search-input" placeholder="Type Grocery Store" />
<div id="map">
</div>
</div>
<script src="./assets/js/recipeScript.js"></script>
<script src="./assets/js/mapScript.js"></script>
</body>
</html>