-
Notifications
You must be signed in to change notification settings - Fork 3
/
index3.html
136 lines (129 loc) · 2.81 KB
/
index3.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<html>
<head>
<style>
ul {
float: left;
width: 100%;
padding: 0;
margin: 0;
list-style-type: none;
}
a.cd {
float: left;
width: 8em;
text-decoration: none;
color: white;
background-color: grey;
padding: 0.2em 0.6em;
border-right: 1px solid white;
}
footer {
position : absolute;
background-color: white;
bottom : 0px;
height : 100px;
margin-top : 0;
}
a.cd:hover {background-color: #ff3300;}
li {display: inline;}
</style>
<style>
div{
background-color: #e0ebeb;
height: 350px;
}
table {
width:60%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
}
table#t01 tr:nth-child(odd) {
background-color:#fff;
}
table#t01 th {
background-color: black;
color: white;
}
body{
background-color: darkgoldenrod;
}
h1
{
color : saddlebrown;
background-color: gainsboro;
text-align: center;
font-size: 44px;
margin:0;
padding:0;
}
</style>
</head>
<body>
<img src="Untitled.png" alt="some_text" height="13%" width="100%">
<ul>
<li><a class="cd" href="index.html">Home</a></li>
<li><a class="cd" href="index1.html">About us</a></li>
<li><a class="cd" href="index2.html">Academics</a></li>
<li><a class="cd" href="index3.html">Fee</a></li>
<li><a class="cd" href="index4.html">Admissions</a></li>
<li><a class="cd" href="index5.html" >Career</a></li>
<li><a class="cd" href="index6.html" >Register</a></li>
<li><a class="cd" href="index7.html" >Login</a></li>
<li><a class="cd" href="index8.html" >Admin Login</a></li>
</ul>
<h1>FEE STRUCTURE FOR UNDERGRADUATE COURSE</h1>
<div>
<p>Full payment of the semester has to be paid at time of admission.</p>
<table id="t01">
<tr>
<th>S.No</th>
<th>Particulars(in INR)</th>
<th>Amount</th>
</tr>
<tr>
<td>1.</td>
<td>Admission Fee</td>
<td>2,000</td>
</tr>
<tr>
<td>2.</td>
<td>Hostel Fee</td>
<td>30,000</td>
</tr>
<tr>
<td>3.</td>
<td>Mess Fee</td>
<td>20,000</td>
</tr>
<tr>
<td>4.</td>
<td>Tution Fee</td>
<td>80,000</td>
</tr>
<tr>
<td>5.</td>
<td>Security Deposit</td>
<td>10,000</td>
</tr>
<tr>
<td> </td>
<td>Total</td>
<td>1,42,000</td>
</tr>
</table>
<p>
# Fee needs to be paid in person after a candidate has been declared eligible.</p>
<p>#There are scholarship for economically weaker meritorious students.</p>
</div>
<footer><img src="Untitled2.png" alt="some_text" height="100%" width="100%"></footer>
</body>
</html>