-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (127 loc) · 3.54 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
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
<!DOCTYPE html>
<html lang = "EN">
<html>
<head>
<title>Restauraunt Menu</title>
<link href="./CSS/index.css" rel = "stylesheet" type = "text/css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href='/index.html'>Home</a></li>
<li><a href='/about.html'>About</a></li>
<li><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>
<form action="" method="GET">
<fieldset>
<legend>Leave us a comment</legend>
<div>
<label for="firstnameInput">
First name : <input type="text" id="firstnameInput"/>
</label>
</div>
<div>
<label for="lastnameInput">
Last name : <input type="text" id="lastnameInput"/>
</label>
</div>
<div>
<label for="emailInput">
Email : <input type="email" id="emailInput"/>
</label>
</div>
<div>
<label for="phonenumberInput">
Phone number : <input type="tel" id="phonenumberInput"/>
</label>
</div>
<div>
Rate us:
</div>
<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>
Your comment:
</div>
<textarea cols="50" rows="4">
</textarea>
<div>
Would you visit us again?
</div>
<div>
<label for="yesInput">
Yes : <input type="radio" name="visit" id="yesInput"/>
</label>
</div>
<div>
<label for="noInput">
No : <input type="radio" name="visit" id="noInput"/>
</label>
</div>
<label for="submitButton">
<input type="submit" id="submitButton" value="Submit"/>
</label>
</fieldset>
</form>
<footer>
This is where any content in the footer would go
</footer>
</body>
</html>