-
Notifications
You must be signed in to change notification settings - Fork 0
/
track.html
111 lines (102 loc) · 3.38 KB
/
track.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
<!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>Track PICK-UP</title>
<link rel="shortcut icon" href="img/logo.jpg" />
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,400,300,500,600,700"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Bungee&family=Bungee+Shade&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/linearicons.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/track.css" />
</head>
</head>
<body>
<header id="header">
<div class="header-top absolute" ></div>
<div class="container main-menu">
<div class="row align-items-center justify-content-between d-flex">
<nav id="nav-menu-container">
<ul class="nav-menu">
<li>
<a
href="index.html"
style="
font-size: 18px;
font-family: 'Bungee', cursive;
color: white;
"
><span class="lnr lnr-train"></span> PICK-UP</a
>
</li>
<li class="menu-active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="track.html">Track</a></li>
<li><a href="contact.html">Support</a></li>
</ul>
</nav>
<!-- #nav-menu-container -->
</div>
</div>
</header>
<section class="banner-area relative" id="home">
<div class="overlay overlay-bg"></div>
<div class="container">
<div
class="row fullscreen d-flex align-items-center justify-content-between"
>
<img class="map" src="./img/R.png">
<span class="dot" id="dot1"></span>
<span id="dot3"></span>
<div id="dot2"></div>
<div id="dot4"></div>
</div>
</div>
</section>
<div class="display" >
<div class="from-group">
<button type="button" class="aa1"
id="result">Track</button>
</div>
<form class="form" id="form1">
<div class="from-group">
<input
required="required";
class="form-control txt-field"
type="text"
name="name"
id="pt1"
placeholder="Platform No."
onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Your name'"
/>
</div>
<form class="form" id="form2">
<div class="from-group" id="text2">
<input
required="required";
class="form-control txt-field"
type="text"
name="name"
placeholder="Coach No."
onfocus="this.placeholder = ''"
onblur="this.placeholder = 'Your name'"
/>
</div>
</form>
</div>
<script src="track.js">
</script>
</body>
</html>