-
Notifications
You must be signed in to change notification settings - Fork 0
/
prog5.html
96 lines (51 loc) · 1.98 KB
/
prog5.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
<html>
<head><title>this program is related to iframe </title></head>
<body bgcolor="yellow">
<h1>this is my first iframe related to webpage</h1>
<hr bgcolor="red">
<marquee bgcolor="green" textcolor="red" > this is a great web page </marquee>
<hr weidth="34">
<hr/>
<a href="prog3.html" target="_blank">this is page </a>
<hr>
<br>
<iframe src="photo.html" weidth=500 height="500" name="wini" ></iframe>
<iframe src="imagegallery.html" width="500" height="500" name="wini"></iframe>
<form>
<label for="fname">first name</label>
<input type="text" id="fname" name="fname"><br>
<label for="fname">last name</label>
<input type="text" id="fname" name="fname"><br>
<label for="fname">father name</label>
<input type="text" id="fname" name="fname"><br>
<label for="fname">mother name</label>
<input type="text"id="fname" name="fname"><br>
<label for="fname">DOB</label>
<input type="text" id="fname" name="fname"><br>
<label for="fname">E-mail address</label>
<input type="text" id="fname" name="fname"><br>
<label for="fname">contact number</label>
<input type="text" id="fname" name="fname"><br>
<label for="file">upload file</label>
<input type="file" id="file" name="file"><br>
<label for="pin">pin code</label>
<input type="pin" id="pin" name="pin"><br>
<label for="radio">male</label>
<input type="radio" id="radio" name="radio"><br>
<label for="radio">female</label>
<input type="radio" id="radio" name="radio"><br>
<label for="radio">OTHER</label>
<input type="radio" id="radio" name="radio"><br>
<label for="bdaymonth">dateofbirth</label>
<input type="month" id="bdaymonth" name="bdaymonth"><br>
<label for="car">type of car</label>
<select id="cars"name="cars">
<option value="volvo">volvo</option>
<option value="audi">audi</option>
<option value="maruti">maruti</option>
<option value="rover">rover</option>
</select>
<input type="submit" value="submit">
</form>
</body>
</html>