forked from 18Nikhil786/CHITKARA-TRAVELS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoute 43.html
171 lines (153 loc) · 5.53 KB
/
Route 43.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Route 43</title>
<link rel="stylesheet" href="styles42.css">
</head>
<body>
<header>
<a href="index.html"><img src="logo.jpg" alt="logo" height="100%" width="20%" ></a>
<a href="index.html"><h1>Chitkara U Travels</h1></a>
<span id="image">
<a href="https://www.chitkara.edu.in/" target="_blank"><img src="cu logo.jpg" alt="" height="125px" width="100%" ></a>
</span>
</header>
<!--Horizontal navigation bar-->
<nav id="horizontal">
<a href="index.html">Home </a>
<a href="#about">About </a>
<a href="#notifications">Notfications</a>
<a href="#">Covid Precautions</a>
<a href="#contact">Contact </a>
</nav>
<!--Vertical navigation bar-->
<nav id="vertical">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()" style="font-size: 30px;">×</a><br>
<a href="index.html">Home </a>
<a href="#about">About </a>
<a href="#chandigarh">Routes</a>
<a href="#notifications">Notfications</a>
<a href="#">Covid Precautions</a>
<a href="#contact">Contact </a><br>
</nav>
<div style="background-color: black;">
<span id="span" style="font-size: 20px; cursor: pointer; background-color: black; color: wheat;" onclick="openNav()">☰</span>
</div>
<a href="Patiala.html"><h2>Patiala</h2></a>
<h4>Route No: 43</h4>
<h3>Driver Name: Punjab Singh </h3>
<h3>Driver's Mobile No: 98727-48376</h3>
<h3>Bus No: PB03X 2672</h3>
<main style="display: inline-block;">
<time style="display: inline-block;">
7:35 AM
<br><br><br>
7:37 AM
<br><br><br>
7:38 AM
<br><br><br>
7:40 AM
<br><br><br>
7:42 AM
<br><br><br>
7:43 AM
<br><br><br>
7:44 AM
<br><br><br>
7:45 AM
<br><br><br>
7:47 AM
<br><br><br>
7:55 AM
<br><br><br>
8:22 AM
<br><br><br>
8:45 AM
</time>
<div style="display: inline-block;">
<div class="stop" > </div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
<div class="c1"></div>
<div class="stop"></div>
</div>
<stops style="display: inline-block;">
Raghu Majra Chowk
<br><br><br>
NIS
<br><br><br>
New Moti Bagh
<br><br><br>
Officer Colony
<br><br><br>
YPS Market
<br><br><br>
Modi College
<br><br><br>
Sai Market
<br><br><br>
Polo Ground
<br><br><br>
Fountain Chowk
<br><br><br>
Punjabi University
<br><br><br>
Holi Angel School
<br><br><br>
Chitkara University
</stops>
</main>
<map style="display: inline-block; ">
<iframe src="https://www.google.com/maps/d/embed?mid=14JJVLxFPLhCxLxJa0nb9NaZ4duiAlHII&ehbc=2E312F" width="640" height="480"></iframe>
</map>
<!--Script-->
<script>
/*opens vertical navigation bar*/
function openNav(){
document.getElementById("vertical").style.width="250px";
}
/*closes vertical navigation bar*/
function closeNav(){
document.getElementById("vertical").style.width="0px";
}
/*changes horizontal navigation bar to vertical navigation bar at 480px & vice versa*/
function navBar(x){
if(x.matches){
document.getElementById("span").innerHTML="☰"
document.getElementById("horizontal").innerHTML=""
}else{
document.getElementById("span").innerHTML=" ";
document.getElementById("horizontal").innerHTML='<a href="index.html">Home </a> ';
document.getElementById("horizontal").innerHTML+='<a href="#about">About </a> ';
document.getElementById("horizontal").innerHTML+='<a href="#notifications">Notfications</a> ';
document.getElementById("horizontal").innerHTML+='<a href="#">Covid Precautions</a> ';
document.getElementById("horizontal").innerHTML+='<a href="#contact">Contact </a> ';
}
}
var x = window.matchMedia("(max-width: 480px)");
navBar(x)
x.addListener(navBar)
</script>
</body>
</html>