-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (161 loc) · 3.27 KB
/
index.html
File metadata and controls
162 lines (161 loc) · 3.27 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
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
<!DOCTYPE html>
<html>
<head>
<title>user registration</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<head>
<body>
<script>
function myFunction()
{
alert("Successful Registration");
}
</script>
<form>
<fieldset>
<legend>Personal information:</legend>
<table>
<tr>
<th colspan=3><marquee behavior="scroll" direction="left">User Details</marquee></th>
<td colspan="10" rowspan="10" id="main"></td>
</tr>
<tr>
<td><p>username:</p></td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td><p>password:</p></td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td><p>secret question:</p></td>
<td><select>
<option>----- </option>
<option> your favourite actor</option>
<option>your first school name </option>
<option> your favourite movie</option>
</select>
</td>
</tr>
<tr>
<td><p>secret answer:</p></td>
<td><input type="text" name="secret_answer"></td>
</tr>
<tr>
<td ><p>gender:</p></td>
<td ><input type="radio" name="sex" value="male">Male<br>
<input type="radio" name="sex" value="female">Female
</td>
</tr>
<tr>
<td ><p>date of birth:</p> <a href="calender.html" target='myIframe' ><img src="icon.png" alt="calender"></a></td>
<td ><select>
<option>date</option>
<option>1</option>
<option>2 </option>
<option> 3</option>
<option> 4</option>
<option> 5</option>
<option> 6</option>
<option> 7</option>
<option> 8</option>
</select>
<select>
<option>month</option>
<option>1</option>
<option>2 </option>
<option> 3</option>
<option> 4</option>
<option> 5</option>
<option> 6</option>
<option> 7</option>
<option> 8</option>
</select>
<select>
<option>year</option>
<option>91</option>
<option>92 </option>
<option>9 3</option>
<option> 94</option>
<option>95</option>
<option>96</option>
<option>97</option>
<option>98</option>
</select>
</td>
<td>
<iframe name='myIframe'></iframe>
</td>
</tr>
<tr>
<td><p>email id </p></td>
<td><input type="text" name="email_id"></td>
</tr>
<tr>
<td><p>phone number </p></td>
<td><input type="text" name="phone"></td>
</tr>
<tr>
<td><p>hobbies</p></td>
<td>
<select multiple>
<option>hobby</option>
<option>dancing</option>
<option>reading</option>
<option> painting</option>
</select>
</td>
</tr>
<tr>
<td><p style="color:blue; font-size:10">Residential Address</p></td>
</tr>
<tr>
<td><p>address </p></td>
<td><input type="text" name="address"></td>
</tr>
<tr>
<td ><p>city:</p></td>
<td ><select>
<option>city</option>
<option>mumbai</option>
<option>navimumbai </option>
<option> chennai</option>
<option> bangalore</option>
<option> kolkatta</option>
</select>
</td>
</tr>
<tr>
<td ><p>state:</p></td>
<td ><select>
<option>state</option>
<option>maharashtra</option>
<option>hyderbad </option>
<option> tamilnadu</option>
<option>bengal</option>
</select>
</td>
</tr>
<tr>
<td colspan=2>
<h3>Subscription to Special Offers<h3>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="Subscription" value="email"> Instant Update through Email<br>
<input type="checkbox" name="Subscription" value="sms"> Instant Updates through SMS<br>
<input type="checkbox" name="Subscription" value="Agree">I Agree<br>
<a href="rules.html"><p style="color:red">rules and regulations</p></a>
</td>
</tr>
<tr>
<td><button type="submit" onclick="myFunction()" >submit</button></td>
<td><button type="reset" value="Reset">Reset</button>
</td>
</tr>
<table>
</fieldset>
</form>
</body>
</html>