-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorderForm.html
More file actions
30 lines (27 loc) · 840 Bytes
/
orderForm.html
File metadata and controls
30 lines (27 loc) · 840 Bytes
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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Order Form</title>
<meta charset = "utf-8">
<!-- Insert link to style.css here. -->
</head>
<body>
<!-- Insert banner.jpg here -->
<h1>Order Form</h1>5
<form method = "post">
Name: <input type = "text" name = "name" size = "50" maxlength = "30"><br><br>
Items: <input type = "checkbox" name = "earings"> Earrings<br><br>
Number:
<select>
<option id = "0" selected>0</option>
<option id = "1">1</option>
<option id = "2">2</option>
<option id = "3">3</option>
<option id = "4">4</option>
</select><br><br>
Comments:<br>
<textarea name = "comments" id = "comments" rows = "4" cols = "40"></textarea><br><br>
<input type = "submit" value = "Submit"> <input type = "reset">
</form>
</body>
</html>