-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhometask2.html
91 lines (87 loc) · 2.37 KB
/
hometask2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<html>
<head>
<title>subscriber data</title>
</head>
<section>
<form>
<label for="name"> Name:</label>
<input type="text" id="name" name="name" placeholder="enter your name" size="40" required>
<br>
<br>
<label for="address"> Address:</label>
<input type="text" id="address" name="address" placeholder="enter your address" size="40" required>
<br>
<br>
<label for="city"> City:</label>
<input type="text" id="city" name="city" placeholder="enter your city" size="40" required>
<br>
<br>
<label for="state"> State:</label>
<input type="text" id="state" name="state" placeholder="enter your state" size="30" required>
<br>
<br>
<label for="zip"> Zip:</label>
<input type="text" id="zip" name="zip" placeholder="enter zip" size="30" required >
<br>
<br>
<label for="magazine"> Magazine:</label>
<select name="magazine" id="magazine">
<option> Newsweek</option>
<option>Vogue</option>
<option> Harpers Bazaar</option>
</select>
<br>
<br>
<label>Subscription:</label>
<input type="radio" id="year1" name="subsyear">
<label for="year1"> 1 year </label>
<input type="radio" id="year2" name="subsyear">
<label for="year2"> 2 year </label>
<br>
<br>
<input type="submit" value="send your order">
</form>
</section>
<hr>
<section>
<form>
<label for="name"> Name: </label>
<input type="text" id="name" name="ad1" size="50">
<br>
<br>
<label for="address"> Address: </label>
<input type="text" id="address" name="ad2" size="50">
<br>
<br>
<label for="city"> City: </label>
<input type="text" id="city" name="ad3" size="50">
<br>
<br>
<label for="state"> State: </label>
<input type="text" id="State" name="ad4" size="25">
<br>
<br>
<label for="zip"> Zip: </label>
<input type="text" id="Zip" name="ad5" size="25">
<br>
<br>
<label for="magazine"> Magazine:</label>
<select name="magazine" id="magazine">
<option> Newsweek</option>
<option>Vogue</option>
<option> Harpers Bazaar</option>
</select>
<br>
<br>
<label>Subscription:</label>
<input type="radio" id="year1" name="subsyear">
<label for="year1"> 1 year </label>
<input type="radio" id="year2" name="subsyear">
<label for="year2"> 2 year </label>
<br>
<br>
<p><label for="comments">Addittional comments</label></p>
<textarea id="comments" name="comments" rows="5" cols="50" placeholder="enter your comments here"></textarea>
<br>
<br>
<input type="submit" value="send your order">