-
Notifications
You must be signed in to change notification settings - Fork 0
/
orderform.html
42 lines (34 loc) · 979 Bytes
/
orderform.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tao form co ban</title>
</head>
<body>
<form method="get" action="orderform.html" class="wufoo">
<h3>Order form</h3>
<p>What would you like to buy</p>
<select>
<option value="">A</option>
<option>B (+ 0.5$)</option>
<option>C (+ 0.5$)</option>
</select>
<br>
<p>Name*</p>
<input type="text" name="fname" value="FIrstName">
<input type="text" name="lname" value="Lastname">
<p>Email</p>
<input type="email" value="" name="email">
<p>Phone Number</p>
<input type="text" value="" name="phone1" size="5"> - <input type="text" value="" name="phone2" size="5"> - <input
type="text" value="" name="phone3" size="5">
<br>
<input type="submit" name="submit" value="Submit">
</form>
<style>
.wufoo {
font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif;
}
</style>
</body>
</html>