-
Notifications
You must be signed in to change notification settings - Fork 2
/
form.html
62 lines (51 loc) · 1.55 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
body {
background-color:#dffc03;
text-align: center;
}
h1{
color: red;
}
</style>
</head>
<body>
<center><h1>Personal Details</h1></center>
Name:<input type="text" name="name"><br><br>
Password:<input type="Password" name="pass"><br><br>
E-mail id:<input type="email" name="email"><br><br>
Gender:<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br><br>
Contact#:<input type="number" name="number"><br>
<h1>Educational Qualification</h1><br>
<label>Degree</label>
<select name="degree">
<option>select Group</option>
<option value="B.Tech">MCA</option>
<option value="M.Tech">BCA</option>
<option value="BE">IMCA</option>
</select><br><br>
<label>Engineering</label>
<select name="engineering">
<option>select Group</option>
<option value="CSE">CSE</option>
<option value="Mechanical">B.Tech</option>
<option value="Chemical">M.Tech</option>
</select>
<br><br>
Hobbies<input type="checkbox" name="hobbies" value="Hobbies">Playing chess
<input type="checkbox" name="hobbies" value="Hobbies">Reading Books<br><br>
<h1>Address</h1>
<textarea type="" name="address" rows="4" cols="50">
</textarea>
<br>
Attch Resume:<input type="file" name="fileToUpload" id="fileToUpload"><br><br>
<input type="submit" value="submit">
</form>
</body>
</html>