-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSirhind route no.66.html
135 lines (112 loc) · 4.46 KB
/
Sirhind route no.66.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
<!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>SIRHIND ROUTE 66</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="Sirhind route no.66.html"><h2>SIRHIND</h2></a>
<h4>Route No: 66</h4>
<h3>Driver Name: Iqbal Singh </h3>
<h3>Driver's Mobile No: 97801-38695
</h3>
<h3>Bus No: PB11CB7827</h3>
<main style="display: inline-block;">
<time style="display: inline-block;">
7:45 AM
<br><br><br>
8:02 AM
<br><br><br>
8:06 AM
<br><br><br>
8:16 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>
<stops style="display: inline-block;">
Fatehgarh Sahib
<br><br><br>
Sirhind G.T Road Bus Stand
<br><br><br>
Chawla Chowk
<br><br><br>
Sadhugarh
<br><br><br>
Chitkara University
</stops>
</main>
<map style="display: inline-block; ">
<iframe src="https://www.google.com/maps/d/embed?mid=1_wLqW0X0Ix_G4qOgFAzuLmKihjIORZDt&ehbc=2E312F" width="640" height="480"></iframe>
</map>
</body>
</html>