-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
89 lines (85 loc) · 3.72 KB
/
index.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
<!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://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<title>Vehicle Tracking System</title>
</head>
<body>
<div class="jumbotron jumbotron-fluid bg-dark text-center" id="JumboHeading">
<div class="container text-white">
<div class="display-3 ">
Welcome to Vehicle Tracking System
</div>
<p class="lead">
We tell you the location of vehicle and seats available in it
</p>
</div>
</div>
<div class="container">
<div id="vehicles" class="row ">
<div class="col-md-6 col-lg-3 p-2">
<div class="card">
<img src="views/images/BOV2.jpg" class="card-img-top img-fluid" alt="BOV-2">
<div class="card-block container m-2">
<h3 class="card-title">BOV-1</h3>
<a href="vehicleInfo.html?q=0" class="btn btn-primary btn-dark">Show Location</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 p-2">
<div class="card ">
<img src="views/images/BOV2.jpg" class="card-img-top img-fluid" alt="BOV-2">
<div class="card-block container m-2">
<h3 class="card-title">BOV-2</h3>
<a href="vehicleInfo.html?q=1" class="btn btn-primary btn-dark">Show Location</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 p-2">
<div class="card ">
<img src="views/images/BOV2.jpg" class="card-img-top img-fluid" alt="BOV-2">
<div class="card-block container m-2">
<h3 class="card-title">BOV-3</h3>
<a href="vehicleInfo.html?q=2" class="btn btn-primary btn-dark">Show Location</a>
</div>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-fluid bg-dark text-center" id="JumboEnding">
<div class="container text-white">
<h3 class="display-5 ">
Made by the Team Vehicle Tracking System
</h3>
<p class="lead">
For any issues contact: <a href="https://github.com/Rishabh606" style=" color: #ffffff">Rishabh Gupta</a>
</p>
<p class="lead">
You are most invited to contribute on our <a href="GitHub page: https://github.com/NeuromancersIITBBS/VehicleTrackingSystem" style=" color: #ffffff">GitHub Page</a>
</p>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="models/vehicleDataModel.js"></script>
</body>
</html>