-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass04.html
180 lines (147 loc) · 5.46 KB
/
Class04.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice</title>
</head>
<body>
<form action="http:www.exapmle.com/login.php">
<p>
Username:
<input type="text" name="username" size="15"
maxlength="30">
</p>
</form>
<form action="http:www.exapmle.com/login.php"></form>
<p>
Password:
<input type="password" name="password" size="15"
maxlength="30">
</p>
<form action="http:www.example.com/login.php">
<p>
What do you think about this website?
</p>
<textarea name="comments" cols="20" rows="5">
Please enter your comments.......
</textarea>
</form>
<form action="http:www.example.com/login.php">
<p>
Please select your favourite genre:
<br>
<input type="radio" name="genre" value="rock">Rock
<input type="radio" name="genre" value="Pop" > Pop
<input type="radio" name="genre" value="Jazz" checked> Jazz
</p>
</form>
<form action="http:www.example.com/login.php">
<p>Please Select your favourite Music Service(s) <br>
<input type="checkbox" name="service" id="Itunes"> Itunes
<input type="checkbox" name="service" id="Last.Fm"> Last.Fm
<input type="checkbox" name="service" id="Spotify" checked> Spotify
</p>
</form>
<form action="http:www...example.com/login/php">
<p>Please select your education </p>
<input type="checkbox" name="education" id="Matriculation"> Matriculation
<input type="checkbox" name="education" id="Internmediate" checked> Internmediate
<input type="checkbox" name="education" id="Graduation"> Graduation
</form>
<form action="http:www.example.com/login.php">
<p> Please Select your education </p>
<input type="radio" name="education" id="Matriculation"> Matriculation
<input type="radio" name="education" id="Internmediate" checked> Internmediate
<input type="radio" name="education" id="Under Graduation"> Under Graduation
<input type="radio" name="education" id="Graduation"> Graduation
</form>
<form action="http:www.example.com/login.php">
<p>What device you like to use when you listen Music</p>
<select name="devices" >
<option value="Ipod">Ipod</option>
<option value="Radio"> Radio</option>
<option value="Computer"> Computer</option>
</select>
</form>
<form action="http://www.example.com/profile.php">
<p>Do you play any of the following instruments?
(You can select more than one option by holding
down control on a PC or command key on a Mac
while selecting different options.)</p>
<select name="instruments" size="2 "
multiple="multiple">
<option value="guitar" selected="selected">
Guitar</option>
<option value="drums">Drums</option>
<option value="keyboard">Keyboard</option>
<option value="bass">Bass</option>
<option value="Mic" >Mic</option>
<option value="hand">Hand</option>
</select>
</form>
<form action="http://www.example.com/upload.php"
method="post">
<p>Upload your song in MP3 format:</p>
<input type="file" name="user-song"/> <br>
<input type="submit" value="submit">
</form>
<form action="http://www.example.com/subscribe.php">
<p>Subscribe to our email list:</p>
<input type="text" name="email" />
<input type="submit" name="subscribe"
value="Subscribe" />
</form>
<form action="http://www.example.org/subscribe.php">
<p>Subscribe to our email list</p>
<input type="text" name="email">
<input type="image" src="image/subscribe.jpg" height="20" width="100">
<br>
<br>
<br>
<label >Age: <input type="text" name="Age" ></label>
<br>
Gender
<input id="Male" type="radio" name="gender" id="m">
<label for="Male"> Male </label>
<input id="Female" type="radio" name="gender" id="f">
<label for="Female">Female</label>
<fieldset>
<legend><b>Raziki Agency Corporation</b></legend>
<label> Email: <br>
<input type="text" name="email" ></label> <br>
<label >Mobile: <br>
<input type="text" name="Mobile"></label> <br>
<label > Telephone: <br>
<input type="text" name="telephone">
</label>
</fieldset>
<br>
<label for="username">Username:</label>
<input type="text" name="username" required> <br>
<label for="password">Password:</label>
<input type="text" name="password" required>
<input type="submit" name="submit">
<form action="http://www.example.com/upload.php">
<label for="username">Departure Date:</label>
<input type="date" name="Departure">
<input type="submit" name="submit">
</form>
<form action="http://www.example.org/subscribe.php">
<p>Please enter your email address:</p>
<input type="email" name="email" required>
<input type="submit" value="Submit" />
</form>
<form action="http://www.example.org/subscribe.php">
<p>Please insert your website</p>
<input type="website" name="website">
<input type="submit" name="submit">
</form>
<form action="http://www.example.org/search.php">
<p>Search:</p>
<input type="search" name="search" placeholder="This is Brhn here">
<input type="submit" name="search">
</form>
</body>
</html>