-
Notifications
You must be signed in to change notification settings - Fork 0
/
transport.html
62 lines (54 loc) · 1.8 KB
/
transport.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="transportation.css">
<title>Transportation</title>
</head>
<style>
h5{
color:#FFFFFF;
}
</style>
<body>
<div class="container text-center " style="margin-top:100px;">
<div class="row-fluid">
<h1 style="font-family:verdana;color: white;">Transportation</h1>
</div>
<div class="container2 text-center mt-5">
<div class="row mb-5">
<div class="col-lg">
<img src="jeep.png" alt="">
<h5>Jeep Safari</h5>
</div>
<div class="col-lg">
<img src="ksrtc.png" alt="">
<h5>Bus Services</h5>
</div>
<div class="col-lg">
<img src="taxi.png" alt="">
<h5>Taxi Services</h5>
</div>
</div>
<div class="row">
<div class="col-lg">
<img src="innova.png" alt="">
<h5>Car Rental</h5>
</div>
<div class="col-lg">
<img src="scooter.png" alt="">
<h5>Bike Rental</h5>
</div>
<div class="col-lg">
<img src="auto.png" alt="">
<h5>Auto Rickshaw</h5>
</div>
</div>
</div>
</div>
</body>