forked from CNJasonChen/UofT-CSC309-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection4.html
68 lines (45 loc) · 2.29 KB
/
section4.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
<!-- CSC309 Tutorials, Week 1: HTML, Author: [email protected] -->
<!-- Like section 2, we now built the "order" page. You need to populate it with following contents. -->
<!-- NOTE: Don't worry about the style. You will work on the style of the page next week! -->
<!-- TODO: Find the best place to put this tag. -->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- TODO: Find the best place to put this tag. -->
<title>ABC Cabinets</title>
<!-- TODO: Find the best place to put this tag. -->
<h1>ABC Cabinet</h1>
<!-- TODO: Find the best place to put these tags. -->
<h3>Navigation</h3>
<a href='main.html' class="btn btn-primary">Main Page</a>
<a href='order.html' class="btn btn-primary">Order Page</a>
<!-- TODO: Find the best place to put these tags. -->
<h3>Order Form</h3>
<!-- TODO: You need to order the following tags to build a page similar to the image posted on the first page of this repo. -->
<input type="reset" />
<option value="red">Red</option>
<a>Items: </a><br/>
<label for="paymentA">Amex</label><br/>
<option value="black">Black</option>
<option value="blue">Blue</option>
<input type="checkbox" id="double" name="double" value="double">
<a>Method of payment: </a><br/>
<textarea id="address" name="address" rows="5" cols="33"></textarea>
<option value="green">Green</option>
<input type='text' id='name' name='name' placeholder="Enter name"><br/><br/>
<input type='radio' id='paymentA' name='paymentA' value='Amex'>
<input type="submit" />
<label for="double">Double Cabinet $50.00</label><br/>
<a>Address: </a><br>
<input type='radio' id='paymentV' name='paymentV' value='Visa'>
</select>
<input type="checkbox" id="drawer" name="drawer" value="drawer">
<label for="name">Name: </label><br/>
<label for="drawer">Drawer $20.00</label><br/>
<a>Colour: </a>
<input type="checkbox" id="single" name="single" value="single">
<label for="paymentMC">MasterCard</label><br/>
<label for="paymentV">Visa</label><br/>
<select>
<a>Credit Card #: </a> <input type='text' id='creditCard' name='creditCard'><br/>
<option value="white">White</option>
<input type='radio' id='paymentMC' name='paymentMC' value='MasterCard'>
<label for="single">Single Cabinet $30.00</label><br/>