forked from 18Nikhil786/CHITKARA-TRAVELS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMohali route no.25.html
144 lines (120 loc) · 4.64 KB
/
Mohali route no.25.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
<!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>MOHALI ROUTE 25</title>
<link rel="stylesheet" href="routecss.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>
<!--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>
<a href="Mohali.html"><h2>MOHALI</h2></a>
<h4>Route No: 25</h4>
<h3>Driver Name: Gurjinder Singh
</h3>
<h3>Driver's Mobile No: 94635-85739
</h3>
<h3>Bus No: PB11BN 4051
</h3>
<main style="display: inline-block;">
<time style="display: inline-block;">
7:47 AM
<br><br><br>
7:48 AM
<br><br><br>
7:49 AM
<br><br><br>
7:59 AM
<br><br><br>
8:05 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>
<stops style="display: inline-block;">
Silvi Park(Phase 10)
<br><br><br>
Mohali Golf Club
<br><br><br>
Phase 11
<br><br><br>
Sector 68/69 Lights
<br><br><br>
Sector 66
<br><br><br>
Chitkara University
</stops>
</main>
<map style="display: inline-block; ">
<iframe src="https://www.google.com/maps/d/embed?mid=1bvrzL_dn1VfkNbLS9Hu7JLESQ_mnP6n0&ehbc=2E312F" width="640" height="480"></iframe>
</map>
</body>
</html>