-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocwdt-mod1-chkpt11-Layout.html
More file actions
65 lines (63 loc) · 2.21 KB
/
blocwdt-mod1-chkpt11-Layout.html
File metadata and controls
65 lines (63 loc) · 2.21 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="blocwdt-mod1-chkpt11-Layout.css">
</head>
<header>
<h1>Welcome to Bloc Tacos!</h1>
</header>
<body>
<div id='column-1'>
<section>
<form action="/form.php" method="post">
<fieldset>
<legend>Reservation Form</legend>
<label for="firstName" style="text-align:left">First Name</label>
<input type="text" id="firstName" style="float:left"><br>
<label for="lastName" style="text-align:left">Last Name</label>
<input type="text" id="lastName" style="float:left"><br>
<label for="email" style="text-align:left">Email Address </label>
<input type="email" id="email" style="float:left"><br>
<label for="tel" style="text-align:left">Telephone Number </label>
<input type="tel" id="tel" style="float:left"><br>
<select name="restimes" style="float:left">
<option selected disabled>Pick an available time</option>
<option value="1">Tuesday @ 6PM</option>
<option value="2">Tuesday @ 7PM</option>
<option value="3">Wednesday @ 5PM</option>
<option value="4">Wednesday @ 9PM</option>
</select><br>
<textarea col="180" row="25" style="float:left" placeholder="Additional Comments or Requests Here"></textarea>
<input type="submit" value="Submit">
</fieldset>
</form>
</section>
</div>
<div id='column-2'>
<table>
<tr>
<th>Quantity</th>
<th>Item</th>
<th>Price</th>
</tr>
<tr>
<td>1</td>
<td>Bloco Taco</td>
<td>$4</td>
<tr>
<td>2</td>
<td>Bloco Taco</td>
<td>$7</td></tr><tr>
<td>3</td>
<td>Bloco Taco</td>
<td>$10</td></tr><tr>
<td>4</td>
<td>Bloco Taco</td>
<td>$12</td>
</tr><tr class="mega">
<td>1</td>
<td>Bloc.io Tac.io<br>Mega Pack</td>
<td>$100</td>
</tr>
</div>
</body>
</html>