forked from 18Nikhil786/CHITKARA-TRAVELS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoute 46.htm
141 lines (123 loc) · 4.74 KB
/
Route 46.htm
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
<!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 46</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: 46</h4>
<h3>Driver Name: Manjeet Singh </h3>
<h3>Driver's Mobile No: 97817-45068</h3>
<h3>Bus No: PB11AR 9639</h3>
<main style="display: inline-block;">
<time style="display: inline-block;">
7:37 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:48 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>
<stops style="display: inline-block;">
Bhadson Chungi
<br><br><br>
Kohli Sweets
<br><br><br>
DLF Colony
<br><br><br>
Hemkund P. Pump
<br><br><br>
Sirhind Road By Pass
<br><br><br>
DCW Flyover
<br><br><br>
Chitkara University
</stops>
</main>
<map style="display: inline-block; ">
<iframe src="https://www.google.com/maps/d/embed?mid=1B0eKlmwkAtCw2LJt47seHzZBgVrsABw8&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>