-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.html
53 lines (52 loc) · 1.53 KB
/
Test.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
<html>
<head>
<title> Registration Form </title>
</head>
<body bgcolor=lavender>
<img src="/home/cse/Downloads/logo.png" width=50 height=50 style=float:left>
<img src="/home/cse/Downloads/vishnu image.png" width=60 height=60 style=float:right>
<center>
<h1> BVRIT Hyderabad College of Engineering for Women </h1>
</center>
<marquee style="color:purple";font-size:70;behavior="scrolling"> Welcome to BVRITH </marquee>
<font color="black" size="2">
<fieldset>
<legend><b><h2 style="color:brown">Personal Information</h2></b></legend>
First Name<input type=textbox><br><br>
Last Name <input type=textbox><br><br>
DOB <input type=date><br><br>
Gender <br>
<input type=radio name=gender> Male <br>
<input type=radio name=gender> Female <br><br>
Address <textarea></textarea> <br><br>
</fieldset>
<fieldset>
<legend><b><h2 style="color:brown"> Academic Information </h2></b></legend>
Branch
<select>
<option> CSE </option>
<option> CSM </option>
<option> EEE </option>
<option> ECE </option>
</select>
<br><br>
Year
<select>
<option> I </option>
<option> II </option>
<option> III </option>
<option> IV </option>
</select>
<br><br>
Skills <br>
<input type=checkbox> C Programming <br>
<input type=checkbox> Java Programming <br>
<input type=checkbox> Python Programming <br>
<input type=checkbox> R Programming <br>
<input type=checkbox> SQL <br>
<br>
Email ID <input type=email><br><br>
Resume <input type=file><br><br>
</fieldset>
<input type=submit>
</html>