forked from 123charu/Scripting-Languages-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
56 lines (55 loc) · 1.81 KB
/
code.html
File metadata and controls
56 lines (55 loc) · 1.81 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
<html>
<HEAD>
<title>Registration page</title>
</HEAD>
<body bgcolor="lightgreen">
<br>
<br>
<form>
<label>Username:</label>
<input type="text"name="Username"size="50"/><br><br>
<label>DOB:</label>
<input type="date"><br><br>
<label>
Course:
</label>
<select>
<option value="Course">Course</option>
<option value="MCA">MCA</option>
<option value="BCA">BCA</option>
<option value="B.Tech">B.Tech</option>
<option value="BBA">BBA</option>
<OPTION value="MBA">MBA</OPTION>
<OPTION value="Msc">Msc</OPTION>
<option value="M.Tech">M.Tech</option>
<option value="Bsc">Bsc</option>
</select>
<br>
<br>
<label>
Gender:
</label><br>
<input type="radio"name="Male"/>Male<br>
<input type="radio"name="Female"/>Female<br>
<input type="radio"name="Other"/>Other<br>
<br>
<br>
<label>
Phone:
</label>
<input type="text"name="country code"value="91"size="2"/>
<input type="text"name="phone"size="10"/><br><br>
<label>
Email:
</label>
<input type="email"id="email"name="email"/><br>
<br><br>
<label>Password:</label>
<input type="password"id="pass"namr="pass"/><br>
<br><br>
<label>Re-type-password:</label>
<input type="password"id="repass"name="repass"/><br>
<br><br>
</form>
</body>
</html>