-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRoute 45.html
129 lines (111 loc) · 4.4 KB
/
Route 45.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
<!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 45</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: 45</h>
<h3>Driver Name: Kamaljit Singh </h3>
<h3>Driver's Mobile No: 75085-30697</h3>
<h3>Bus No: CH01TA 8727</h3>
<main style="display: inline-block;">
<time style="display: inline-block;">
7:50 AM
<br><br><br>
7:52 AM
<br><br><br>
7:55 AM
<br><br><br>
8:20 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;">
Sirhindi Gate
<br><br><br>
Lakad Mandi
<br><br><br>
SST Nagar
<br><br><br>
Liberty Chowk
<br><br><br>
Chitkara University
</stops>
</main>
<map style="display: inline-block; ">
<iframe src="https://www.google.com/maps/d/embed?mid=1oZQGgZKiXaItreKUb7KIgufRh3RRv4Br&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>