-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_us.html
137 lines (127 loc) · 7.66 KB
/
about_us.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
137
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="gpt_css.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Eczar">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Crimson Text">
<script src="gpt_js.js"></script>
<title>Government Polytechnic College, Masab Tank</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<img src="telanganalogo.png" alt="" class="logo">
<a class="navbar-brand" href="home.html"><b style="color:white;"> GPT, Masab Tank</b></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="home.html" style="color:white;">Home <span
class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about_us.html" style="color:white;">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="Courses_offered.html" id="navbarDropdownMenuLink" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="color:white;">
Courses Offered
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="Courses_offered.html#automobile">Automobile Engineering</a>
<a class="dropdown-item" href="Courses_offered.html#civil">Civil Engineering</a>
<a class="dropdown-item" href="Courses_offered.html#cme">Computer Engineering</a>
<a class="dropdown-item" href="Courses_offered.html#eee">Electrical and Electronics Engineering</a>
<a class="dropdown-item" href="Courses_offered.html#ece">Electrical and Communication Engineering</a>
<a class="dropdown-item" href="Courses_offered.html#mech">Mechanical Engineering</a>
<a class="dropdown-item" href="Courses_offered.html#dph">Pharmacy</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="events.html#events" style="color:white;">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="achievements.html#achievement_id" style="color:white;">Achievements</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact_us.html#contact_id" style="color:white;">Contact Us</a>
</li>
</ul>
</div>
</nav>
<div id="carouselExampleCaptions" class="carousel slide" data-ride="carousel" data-interval="5000">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="3"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="slide1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>We build <b>Pharmacists</b></h5>
<p>Over 1000 pharmacists graduated from our college are in <strong>Top Universities</strong> now</p>
</div>
</div>
<div class="carousel-item">
<img src="slide2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>We make successful <b>Electrical and Electronics Engineers</b></h5>
<p>Many <strong>Alumni's</strong> from our college graduated with top ranks.</p>
</div>
</div>
<div class="carousel-item">
<img src="slide4.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5><b>GPT Masab Tank</b> is the <i>HotDrop</i> for aspiring Computer Engineers</h5>
<p>We supervise the vision of Master-minds and assist them to outstretch the destination</p>
</div>
</div>
<div class="carousel-item">
<img src="slide3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5>We form the proficient <b>Mechanical's</b></h5>
<p>We also are the pioneers for the striving engineers who dream to achieve their heights...</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="jumbotron">
<h1 class="display-4" id="display_id">About College and Us</h1>
<hr class="my-4">
<p id="about_text"><b>Government Polytechnic College, Masab Tank</b> which is also known as GPT, Masab Tank is
one of the oldest polytechnics in the state, was established in 1923. Originally named as Osmania Central
Technical College and located in the Mint Compound at Saifabad.
In 1931, it was renamed as Osmania Technical College.</p>
<button id="show_more" onclick="textmoredisplay()">Show more...</button>
</div>
<footer class="container">
<p class="float-right"><a href="#">Back to top</a></p>
<p align="center" style="font-variant: small-caps;">© 2020-2025 Government Polytechnic College, Masab Tank</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
</body>
</html>