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<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Help Me Decide</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans|Yeseva+One&display=swap" rel="stylesheet">
<script src="https://developer.edamam.com/attribution/badge.js"></script>
</head>
<body>
<header id="banner">
<nav>
<ul>
<li><a class = "reset-to-home" href="">Home</a></li>
</ul>
</nav>
<h1>Help Me Decide</h1>
<span>Are you hungry? Can't decide on what to eat? We've got you covered!</span>
</header>
<main>
<div id = options>
<section id = "left-box" class = "home-img">
<form id = "home" class = "start">
<h2 class ="start">COOK AT HOME</h2>
<p class = "outline">Feel like creating your own amazing food? Check out this section for ideas!</p>
<input type = "submit" class = "start button" value = "Lets make some food!" id = "home-btn">
<select id = "categories" class = "hidden">
</select>
</form>
</section>
<section id = "right-box" class = "out-img">
<form id = "out" class = "start">
<h2 class = "start">GO OUT TO EAT</h2>
<p class = "outline">Want someone else to do the food preparation heavy lifting? Take a look here for fun restaurant options!</p>
<input type = "submit" class = "start button" value = "Find me some restaurants!" id = "out-btn">
</form>
<div class = "results hidden" id = "results">
<ul id = "cookResults"></ul>
<ul id = "restaurantResults"></ul>
</div>
</section>
</div>
</main>
<p id ="js-error-message" class="error-message"></p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
<footer>
<div id="edamam-badge" data-color="white"></div>
<figure id = "yelp">
<figcaption>Powered By</figcaption>
<img src = "https://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Yelp_Logo.svg/1200px-Yelp_Logo.svg.png" alt = "yelp logo" height = "50">
</figure>
</footer>
</html>