-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
79 lines (61 loc) · 3.6 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Project-1</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!-- Only way Helen's CSS styling sheet would work -- let me know what has to be changed. -->
<link rel="stylesheet" href="./assets/style.css" media="screen">
<!-- Bootstrap code -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<!-- Font Awesome -->
<link href="https://fonts.googleapis.com/css?family=Oswald|Rubik&display=swap" rel="stylesheet">
<!-- Materialize -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- JQuery and JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="./assets/javascript/app.js"></script>
<title>Mood Food</title>
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Edamam API-->
<script src="https://developer.edamam.com/attribution/badge.js"></script>
</head>
<body>
<header>
<h1>The Mood Food App!</h1>
<h5>We use your mood to help select your food.</h5>
</header>
<div class="container">
<div class="row">
<div class="col-md-6">
<form id="inputForm">
Paste Image URL: <input type="text" name="userImage" placeholder="http://www.google.com" id="userImage" class="inputField">
<div id="userImageDisplay"></div>
Age: <input type="text" name="age" placeholder="18" id="userAge" class="inputField">
Zip Code: <input type="text" name="Zip-Code" placeholder="19030" id="userzip-code" class="inputField">
<input id="submitUserInfo" class="rrcBtn" value="What's my Mood?" type="submit">
</form>
</div>
<div id="emot_rrcArea" class="col-md-6 displayNone">
<!--Delected Mood input and replaced with H2 tag and div for emotion icons-->
<h2>Your Mood:</h2>
<div id="emotionsIcons"></div>
<button id="recipebtn" class="rrcBtn"><i class="fas fa-utensils"></i>Recipe</button>
<button id="restaurantBtn" class="rrcBtn"><i class="fas fa-hamburger"></i>Restaurant</button>
<button id="cocktailBtn" class="rrcBtn displayNone"><i class="fas fa-cocktail"></i> Cocktail</button>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="titleArea">Suggestions:</h3>
<div id="table"></div>
</div>
</div>
</div>
</body>
</html>