-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (128 loc) · 6.04 KB
/
index.html
File metadata and controls
149 lines (128 loc) · 6.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dinner with Developers</title>
<link rel="icon" type="image/png" href="./images/fav.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/bulma@0.9.0/css/bulma.min.css" />
<link rel="stylesheet" href="style.css">
<section class="hero is-primary is-small">
<div class="hero-body">
<div class="container">
<h1 class="title" href= "index.html">
Dinner with Developers
</h1>
<h2 class="subtitle"> mike kolek, juliette gondon, frank salvo </h2>
</div>
</div>
</section>
<!-- navbar -->
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<span></span>
<span></span>
<span></span>
</div>
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-end"></div>
<a class="navbar-item is-active" style: >
Home
</a>
<span class="navbar-item">
<a class="button is-primary is-inverted">
<span class="icon">
<i class="fab fa-hamburger"></i>
</span>
<span class="navbar-item">
<a class="button is-primary is-inverted" href ="./htmlfiles/selectarecipe.html" >
<span>Recipe Search Results</span>
<span class="navbar-item">
<a class="button is-primary is-inverted" href ="./htmlfiles/menupage.html">
<span>Dinner Menu</span>
<span class="navbar-item">
<a class="button is-primary is-inverted" href ="./htmlfiles/wine2.html">
<span>Wine Pairing</span>
<span class="navbar-item">
<a class="button is-primary is-inverted" style="color:darkgrey">
<span>Saved Recipes </span>
</a>
</span>
</div>
</div>
</div>
</nav>
</div>
<!-- input field for user input -->
<div class="container is-fluid">
<div class="inputforms">
<div class="field">
<div class = "intro">
<br><br>
<p style="font-family:'Garamond'" >
<!-- intro to user -->
Welcome to dinner! <br>
Build a menu for your dinner party by specifying the type of cuisine, main course and if you and/or your guests have dietary restrictions.
After entering that information and hitting "submit" you will be presented with three menu items which match your criteria. Select one and a recommended wine
pairing will be provided on the 'wine pairing' page - you can switch wine paring between cuisine and main course type. Once you select a main course and wine, a
menu for your guests will be generated and you will have the recipe to prepare the meal. You can also save recipies if you would
like to keep your selection and search for more!
<br><br>
</p>
<!-- inputs for recipe search criteria -->
</div>
<div class="control">
<input class="input is-primary" id="input1" type="text" placeholder="Cuisine: Italian, French, Chinese, etc.">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-primary" id="input2" type="text" placeholder="Type of food: Beef, Chicken, Pork, etc.">
</div>
</div>
<!-- <div class="field">
<div class="control">
<input class="input is-primary" id="input3" type="text" placeholder="list ingredient">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-primary" id="input4" type="text" placeholder="list ingredient">
</div>
</div> -->
</div>
<br>
<div class="field">
<div class="control">
<div class="select is-primary">
<select id="dietarySelection">
<!-- dietary restriction criteria -->
<option>Dietary Restrictions</option>
<option value = "">none</option>
<option value = "Peanut-Free">peanut allergy</option>
<option value = "Dairy-Free">dairy free</option>
<option value = "Gluten-Free">gluten free</option>
</select>
<br>
<!-- wine pairing -->
<!-- <label class="checkbox">
<input type="checkbox">
Do you want to include a wine pairing?
</label> -->
<div class="buttons">
<button id = "submitMain" class="button is-primary is-light"> Submit </button>
</div>
</div>
</div>
</head>
<body>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src= "./htmlfiles/wineScript.js"></script>
</body>
</html>