-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathittable.html
125 lines (101 loc) · 3.8 KB
/
ittable.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
<html>
<head>
<style>
tr:hover
{
background-color: #ffff99;
}
</style>
</head>
<body>
<table align=center style="width:800px; background: linear-gradient(-90deg, red, yellow); border-radius: 25px;" cellpadding="5" >
<tr>
<th colspan="6" style="outline: thin solid black;" > <div align="center">Top Ten BCA Colleges in India</div></th>
</tr>
<tr >
<th width="2%">Rank</th>
<th width="20%"><strong>Name of the College</strong></th>
<th width="25%"><strong>Address</strong></th>
<th width="8%"><strong>Phone No</strong></th>
<th width="8%"><strong>College Website</strong></th>
</tr>
<tr style="outline: thin solid black; ">
<td>1</td>
<td>Christ University</td>
<td>Hosur Road, Bangalore</td>
<td>080-40129100/ 40129600</td>
<td><a href="http://christuniversity.in"><abbr title="http://christuniversity.in">Click Here</abbr></a></td>
</tr >
<tr >
<td>2</td>
<td>SRM University</td>
<td>3 Veerasamy Street, West Mambalam, Chennai</td>
<td>044-24742836/24747231</td>
<td><a href="http://srmuniv.ac.in"><abbr title="http://srmuniv.ac.in">Click Here</abbr></a></td>
</tr>
<tr style="outline: thin solid black;">
<td>3</td>
<td>Institute of Management Studies</td>
<td>A-8B, IMS Campus, Sector-62, Noida</td>
<td>0120-4798800/02</td>
<td><a href="http://imsnoida.com/"><abbr title="http://imsnoida.com/">Click Here</abbr></a></td>
</tr >
<tr >
<td>4</td>
<td>Madras Christian College</td>
<td>Velachery Main Road, East Tambaram, Chennai</td>
<td>044-22390675</td>
<td><a href="http://www.uckkr.org/"><abbr title="http://www.uckkr.org/">Click Here</abbr></a></td>
</tr>
<tr style="outline: thin solid black;">
<td>5</td>
<td>Symbiosis Institute of Computer Studies & Research</td>
<td>1st Floor, Atur Centre, Gokhale Cross Road, Model Colony, Pune, Maharashtra 411016</td>
<td>020-25675601</td>
<td><a href="http://sicsr.ac.in/"><abbr title="http://sicsr.ac.in/">Click Here</abbr></a></td>
</tr >
<tr >
<td>6</td>
<td>Birla Institute of Technology</td>
<td>Mesra, Ranchi, Jharkhand 835215</td>
<td>0651-2275444</td>
<td><a href="https://www.bitmesra.ac.in/"><abbr title="https://www.bitmesra.ac.in/">Click Here</abbr></a></td>
</tr>
<tr style="outline: thin solid black;">
<td>7</td>
<td>Presidency College</td>
<td>Kempapura, Near Reliance Fresh, Hebbal, Bengaluru, Karnataka 560024</td>
<td>80-2520 2793 - 96</td>
<td><a href="http://presidencycollege.edu.in/"><abbr title="http://presidencycollege.edu.in/">Click Here</abbr></a></td>
</tr >
<tr >
<td>8</td>
<td>University College-Kurukshetra</td>
<td>Kurukshetra</td>
<td>01744-238049</td>
<td><a href="http://www.uckkr.org/"><abbr title="http://www.uckkr.org/">Click Here</abbr></a></td>
</tr>
<tr style="outline: thin solid black;">
<td>9</td>
<td>Stella Maris College</td>
<td>17, Cathedral Road, Chennai - 600 086, TamilNadu</td>
<td>44-2811 1987/2811 1951</td>
<td><a href="http://www.stellamariscollege.org/"><abbr title="http://www.stellamariscollege.org/">Click Here</abbr></a></td>
</tr >
<tr rowspan=2 >
<td>10</td>
<td>Xavier Institute of Computer Application</td>
<td>Campus Navrangpura, P.B. No. 4168, Ahmedabad</td>
<td>079-26308057</td>
<td><a href="http://sxca.edu.in"><abbr title="http://sxca.edu.in">Click Here</abbr></a></td>
</tr >
<tr >
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr >
</table>
</body>
</html>