-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBusInfo.html
More file actions
148 lines (140 loc) · 5.47 KB
/
BusInfo.html
File metadata and controls
148 lines (140 loc) · 5.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bus Information</title>
<link rel="stylesheet" href="BusInfo.css">
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="icon" href="LOGOblack.png" type="image/x-icon">
</head>
<body>
<div class="container">
<div id="bus-info">
<a href="index.html"><img id="logo-image" src="LOGO1.png" alt=""></a>
<h2 id="bus-number">Bus Number: 14</h2>
<h2 id="driver-name">Driver: Driver Name</h2>
<h2 id="bus-reg">Bus Registration: MP09AB1234</h2>
</div>
<div id="route-table">
<div id="table">
<table>
<thead>
<h1>ROUTE TABLE</h1>
<tr>
<th>Serial No.</th>
<th>Bus Stop</th>
<th>First Shift</th>
<th>Second Shift</th>
</tr>
</thead>
<tbody id="table-body">
<tr>
<td>1</td>
<td>SANAWAD STATION</td>
<td>06:10</td>
<td>07:55</td>
</tr>
<tr>
<td>2</td>
<td>BAZAR</td>
<td>06:12</td>
<td>07:58</td>
</tr>
<tr>
<td>3</td>
<td>BUS STAND</td>
<td>06:15</td>
<td>08:00</td>
</tr>
<tr>
<td>4</td>
<td>TRIKON SQUARE</td>
<td>06:18</td>
<td>08:05</td>
</tr>
<tr>
<td>5</td>
<td>MORTAKKA RAILWAY STATION</td>
<td>06:25</td>
<td>08:10</td>
</tr>
<tr>
<td>6</td>
<td>BADWAHA</td>
<td>06:30</td>
<td>08:25</td>
</tr>
<tr>
<td>7</td>
<td>BALWADA</td>
<td>07:05</td>
<td>08:35</td>
</tr>
<tr>
<td>8</td>
<td>CHORAL</td>
<td>07:20</td>
<td>09:10</td>
</tr>
<tr>
<td>9</td>
<td>SIMROL</td>
<td>07:40</td>
<td>09:25</td>
</tr>
<tr>
<td>10</td>
<td>KANAD FATA</td>
<td>07:45</td>
<td>09:30</td>
</tr>
<tr>
<td>11</td>
<td>UMARIA KHEDI</td>
<td>07:50</td>
<td>09:35</td>
</tr>
<tr>
<td>12</td>
<td>MPEB GRID</td>
<td>08:00</td>
<td>09:45</td>
</tr>
<tr>
<td>13</td>
<td>TEJAJI NAGAR</td>
<td>08:05</td>
<td>09:50</td>
</tr>
<tr>
<td>14</td>
<td>KAILOD KARTAL</td>
<td>08:10</td>
<td>09:55</td>
</tr>
<tr>
<td>15</td>
<td>SAGE UNIVERSITY</td>
<td>08:15</td>
<td>10:00</td>
</tr>
</tbody>
</table>
</div>
<div id="map-container">
<iframe id="map-link"
src="https://www.google.com/maps/d/embed?mid=1cheNSd0uLbYs33nQsJL4j1YRhMsvwpI&ehbc=2E312F&noprof=1"
frameborder="0">
</iframe>
<div class="marquee">
<span>This MAP does NOT show STOP-TO-STOP route because of "Google maps limitations".</span>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>