-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (81 loc) · 2.45 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<doctype! html>
<html lang="en">
<head>
<title>T.G. REPORT</title>
<meta charset="utf-8">
<style>
body { font-family: font-family: Verdana,sans-serif;
font-size: 1.2em;
}
header, footer {
padding: 10px;
color: white;
border: 3px solid black;
background-color: brown;
}
nav ul {
padding: 10px;
border: 3px solid black;
background-color: orange;
}
nav ul li {
display: inline;
margin: 5px;
}
form {
padding: 10px;
background-color: white;
}
div{
margin: auto;
width: 50%;
border: 3px solid black;
padding: 10px;
background-color: brown;
}
</style>
</head>
<body>
<header><img src="header-new.png"/></header>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="student.html"><li>Student Registration</li></a>
<a href="contact.html"><li>Contact Us</li></a>
</ul>
</nav>
<form action="action_2.php" method="post">
<div>
Branch:    <select class="dropdown" name="branch">
<option value="computer">CSE</option>
<option value="civil">CE</option>
<option value="mechanical">ME</option>
<option value="electrical">EC</option>
</select><br/><br/>
Year:     <select class="dropdown" name="year">
<option value="first">1st</option>
<option value="second">2nd</option>
<option value="third">3rd</option>
<option value="fourth">4th</option>
</select><br/><br/>
Semester: <select class="dropdown" name="semester">
<option value="first">1st</option>
<option value="second">2nd</option>
<option value="third">3rd</option>
<option value="fourth">4th</option>
<option value="fifth">5th</option>
<option value="sixth">6th</option>
<option value="seventh">7th</option>
<option value="eighth">8th</option>
</select><br/><br/>
Batch: <select class="dropdown" name="session" >
<option value="17-18">2014-2018</option>
<!--<option value="civil">CE</option>
<option value="mechanical">ME</option>
<option value="electrical">EC</option> -->
</select> <br/><br/>
       <input type="submit" value="Search">
</div>
</form>
</body>
</html>