-
Notifications
You must be signed in to change notification settings - Fork 0
/
experiment14.html
84 lines (82 loc) · 3.3 KB
/
experiment14.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="experiment14.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admission Form</title>
</head>
<body>
<div class="heading">
<h1>Canara Engineering college<hr></h1>
<h2><p>Admission Form</p></h2>
</div>
<div class="form">
<form>
<label for="fname"><strong>First Name:</strong>
<input type="text" id="fname">
</label>
<label for="mname"><strong>Middle Name:</strong>
<input type="text" id="mname">
</label>
<label for="lname"><strong>Last Name:</strong>
<input type="text" id="lname">
</label>
<label for="dob"><strong>DOB</strong>
<input type="date" id="dob">
</label>
<label for="gender"><strong>Gender</strong>
<input type="radio" id="gender"><label>Male</label>
<input type="radio" id="gender"><label>Female</label>
<input type="radio" id="gender"><label>Third gender</label>
</label>
<table border="0">
<tr class="table_head">
<th>Sl No.</th>
<th>College/School</th>
<th>Marks</th>
<th>Percentage/CGPA</th>
<th>Passed Year</th>
</tr>
<tr>
<th>1</th>
<th><input type="text" id="college_name"></th>
<th><input type="text" id="marks"></th>
<th><input type="number" id="cgpa"></th>
<th><input type="number" id="Year"></th>
</tr>
<tr>
<th>2</th>
<th><input type="text" id="college_name"></th>
<th><input type="text" id="marks"></th>
<th><input type="number" id="cgpa"></th>
<th><input type="number" id="Year"></th>
</tr>
<tr>
<th>3</th>
<th><input type="text" id="college_name"></th>
<th><input type="text" id="marks"></th>
<th><input type="number" id="cgpa"></th>
<th><input type="number" id="Year"></th>
</tr>
<tr>
<th>4</th>
<th><input type="text" id="college_name"></th>
<th><input type="text" id="marks"></th>
<th><input type="number" id="cgpa"></th>
<th><input type="number" id="Year"></th>
</tr>
<tr>
<th>5</th>
<th><input type="text" id="college_name"></th>
<th><input type="text" id="marks"></th>
<th><input type="number" id="cgpa"></th>
<th><input type="number" id="Year"></th>
</tr>
</table>
<input type="submit" class="submit" value="Submit">
<input type="reset" class="clear" value="Clear">
</form>
</div>
</body>
</html>