forked from aliciacisnerosm/FirstHTMLPage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
200 lines (194 loc) · 5.31 KB
/
index.html
File metadata and controls
200 lines (194 loc) · 5.31 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
200
<!DOCTYPE html>
<html lang="en">
<head>
<title>Restauraunt Menu</title>
<meta charset="UTF-8" />
<link href="./css/index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h2>
Welcome to our menu!
</h2>
</header>
<nav>
<ul>
<li class="menu activeOption" id="home">
Home
</li>
<li class="menu" id="about">
About
</li>
<li class="menu" id="reviews">
Reviews
</li>
</ul>
</nav>
<aside>
<p>
This is the sidebar!
</p>
</aside>
<section class="homeSection selectedSection">
<table>
<thead>
<tr>
<th class="theading">
Food
</th>
<th class="theading">
Description
</th>
<th class="theading">
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 class="reviewsSection hidden">
<form>
<fieldset>
<legend>
Leave us a comment
</legend>
<span> We won't share this information </span>
<div class="optionContainer">
<label for="firstName"> First name : </label>
<input type="text" id="firstName" class="formElement">
</div>
<div class="optionContainer">
<label for="lastName"> Last name : </label>
<input type="text" id="lastName" class="formElement">
</div>
<div class="optionContainer">
<label for="email"> Email : </label>
<input type="email" id="email" class="formElement">
</div>
<div class="optionContainer">
<label for="phoneNumber"> Phone number : </label>
<input type="tel" id="phoneNumber" class="formElement">
</div>
<div class="optionContainer">
<p>
Rate us:
</p>
<select name="rate" id="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 class="optionContainer">
<p>
Your comment:
</p>
<textarea cols="50" rows="4"></textarea>
</div>
<div class="optionContainer">
<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 class="optionContainer">
<button type="submit" id="resetButton" class="clickable reset-btn">
Reset
</button>
<button type="submit" id="submitButton" class="clickable submit-btn">
Submit
</button>
</div>
</fieldset>
</form>
</section>
<section class="aboutSection hidden">
<h1>
The about section is under maintainance
</h1>
</section>
<footer>
This is where any content in the footer would go
</footer>
<script src="./js/index.js" type="text/javascript"></script>
</body>
</html>