-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (110 loc) · 3.23 KB
/
index.html
File metadata and controls
119 lines (110 loc) · 3.23 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
<!DOCTYPE html>
<html>
<head>
<title>Restauraunt Menu</title>
<link rel="stylesheet" type="text/css" href="/style.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>
<label for="firstnameInput">
First name : <input type="text" id="firstnameInput">
</label>
<label for="lastnameInput">
Last name : <input type="text" id="lastnameInput">
</label>
<label for="emailInput">
Email : <input type="email" id="emailInput">
</label>
<label for="phonenumberInput">
Phone number : <input type="tel" id="phonenumberInput">
</label>
Rate us:
<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>
Your comment:
<textarea cols="50" rows="4"></textarea>
Would you visit us again?
<label for="yesInput">
Yes : <input type="radio" name="visit" id="yesInput">
</label>
<label for="noInput">
No : <input type="radio" name="visit" id="noInput">
</label>
<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>