-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
199 lines (193 loc) · 4.9 KB
/
index.html
File metadata and controls
199 lines (193 loc) · 4.9 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<head>
<title>Restaurant Menu</title>
<meta charset="UTF-8" />
</head>
<body>
<header>
<nav>
<ul>
<li class="menu">
<a href='/index.html'>
Home
</a>
</li>
<li class="menu">
<a href='/about.html'>
About
</a>
</li>
<li class="menu">
<a href='/review.html'>
Reviews
</a>
</li>
</ul>
</nav>
</header>
<aside>
<p>
This is the sidebar!
</p>
</aside>
<h2>
Welcome to our menu!
</h2>
<section>
<table>
<thead>
<tr>
<th>
Food
</th>
<th>
Description
</th>
<th>
Price
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Salad
</td>
<td>
Fresh, delicious Cobb Salad
</td>
<td>
$7.99
</td>
</tr>
<tr>
<td>
Burger
</td>
<td>
1/4 lb grass-fed burger with
choice of cheese
</td>
<td>
$6.99
</td>
</tr>
<tr>
<td>
Chicken Salad Sandwich
</td>
<td>
Our world famous chicken salad on a bagel with
homemade pickles
</td>
<td>$8.99
</td>
</tr>
<tr>
<td>
Buffalo Chicken Sandwich
</td>
<td>
Spicy fried chicken on a brioche bun
</td>
<td>
$10.99
</td>
</tr>
<tr>
<td>
Fries
</td>
<td>
Hand cut potatoes lightly fried and seasoned
</td>
<td>
$1.99
</td>
</tr>
<tr>
<td>
Soda
</td>
<td>
Regular,diet,
orange,or root beer
</td>
<td>
$1.00
</td>
</tr>
</tbody>
</table>
</section>
<section>
<form>
<fieldset>
<legend>
Leave us a comment
</legend>
<span> We won't share this information </span>
<div>
<label for="firstName"> First name : </label>
<input type="text" id="firstName" class="formElement">
</div>
<div>
<label for="lastName"> Last name : </label>
<input type="text" id="lastName" class="formElement">
</div>
<div>
<label for="email"> Email : </label>
<input type="email" id="email" class="formElement">
</div>
<div>
<label for="phoneNumber"> Phone number : </label>
<input type="tel" id="phoneNumber" class="formElement">
</div>
<div>
<p>
Rate us:
</p>
<select name="rate">
<option value="very_good">Very good</option>
<option value="good">Good</option>
<option value="okay">Okay</option>
<option value="not_good">Not Good</option>
<option value="bad">Bad</option>
</select>
</div>
<div>
<p>
Your comment:
</p>
<textarea cols="50" rows="4"></textarea>
</div>
<div>
<p>
Would you visit us again?
</p>
<div>
<label for="yesVisit"> Yes : </label>
<input type="radio" name="visit" id="yesVisit">
</div>
<div>
<label for="noVisit"> No : </label>
<input type="radio" name="visit" id="noVisit">
</div>
</div>
<div>
<button type="submit" id="resetButton" class="clickable">
Reset
</button>
<button type="submit" id="submitButton" class="clickable">
Submit
</button>
</div>
</fieldset>
</form>
</section>
<footer>
This is where any content in the footer would go
</footer>
</body>
</html>