-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm02.html
More file actions
133 lines (92 loc) · 2.6 KB
/
Form02.html
File metadata and controls
133 lines (92 loc) · 2.6 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Form Example 1</title>
<link rel="stylesheet" type="text/css" href="reset.css" />
<style>
fieldset{
background-color:rgb(255,246,205);
border:1px solid rgb(233,69,0);
/*float:left; */
margin:10px 0px 100px 2.5%;
width:46%;
}
legend{
background-color:rgb(233,69,0);
color:white;
padding:3px 0px;
text-indent:5px;
width:100%;
}
label{
clear:left;
display:block;
float:left;
font-size:0.9em;
margin: 7px 4% 7px 5px;
width:40%;
}
input{
display:block;
float:left;
font-size:0.9em;
margin:7px 0px;
width:50%;
}
input#state{
width:50px;
}
select{
display:block;
float:left;
font-size:0.9em;
margin:7px 0px;
}
#correct{
font-size:0.9em;
background-color:rgb(233,69,0);
width:48%;
}
</style>
</head>
<body>
<form autocomplete="false">
<fieldset id="custInfo">
<legend>Customer Information</legend>
<label for="custname"> Name:</label>
<input name="custname" id="custname" placeholder="first and last name" type="text" />
<label for="street">Street address:</label>
<input name="street" id="street" type="text" />
<label for="city">City:</label>
<input name="city" id="city" value="Seattle" type="text" />
<label for="state">State (abbr.):</label>
<input name="state" id="state" value="WA" type="text" />
<label for="zip"> Postal code</label>
<input name="zip" id="zip" placeholder="nnnn" type="text" />
<label for="phone"> Phone number:</label>
<input name="phone" id="phone" placeholder="nnnn-nnn-nnnn" type="phone" />
<label for="email">E-mail:</label>
<input name="email" id="email" type="email" />
<label for="ordertype">Order type</label>
<select name="ordertype" id="ordertype" size="1">
<option value="type1"> Carry out</option>
<option value="type2" selected="selected"> Delivery</option>
<option value="type3"> Dine in</option>
</select>
</fieldset>
<fieldset id="experience">
<legend>Share Your Experience</legend>
<label for="visitdate">Date of visit:</label>
<input name="visitdate" id="visitdate" placeholder="nn/nn/nn" type="text" />
<label for="receipt">Reciept number:</label>
<input name="receipt" id="receipt" placeholder="re-nnnnnn" type="text" />
<label id="correct">Was your order correct?</label>
<label for="yes">Yes</label>
<input type="radio" name="ordercorrect1" id="yes">
<label for="no">No</label>
<input type="radio" name="ordercorrect2" id="no">
</fieldset>
</form>
</body>
</html>