forked from sterben04/Railway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
152 lines (128 loc) · 6.17 KB
/
index.php
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
149
150
151
152
<?php include('signup-action.php') ?>
<?php include('login-action.php') ?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="vendors/css/grid.css">
<link rel="stylesheet" type="text/css" href="vendors/css/normalize.css">
<link rel="stylesheet" type="text/css" href="vendors/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="vendors/css/ionicons.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link href="http://fonts.googleapis.com/css?family=Lato:100,300,400,300italic" rel="stylesheet" type="text/css">
<title>OTORail</title>
</head>
<body>
<header>
<nav class="main-nav">
<div class="row">
<img class="logo1" src="vendors/images/Capture.PNG">
<img class="logo2" src="vendors/images/2.PNG">
<ul>
<li><a href="#">Help</a></li>
<li><a href="#">Safety</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Home</a></li>
</ul>
</div>
</nav>
<div class="header-box">
<div class="row">
<h1>Your Ride is Our Command</h1>
<a class="btn btn-full" href="login.html">Get a Ride</a>
<a class="btn btn-full js--scroll" href="#asd">Sign Up</a>
</div>
</div>
</header>
<section class="section-features">
<div class="row">
<h2>An Auto to take you anywhere at the cheapest price!</h2>
<p>The all too familiar auto ride, minus the hassle of waiting and haggling for price.</p>
</div>
<div class="row">
<div class="col span-1-of-4">
<i class="ion-thumbsup icon-big"></i>
<h3>Best Price Guarenteed</h3>
<p>We return the difference in price</p>
</div>
<div class="col span-1-of-4">
<i class="ion-model-s icon-big"></i>
<h3>CNG powered Autos</h3>
<p>The mark shift from petrol and diesel autos to CNG is happening,although there are only half a dozen CNG-Vending Outlets</p>
</div>
<div class="col span-1-of-4">
<i class="ion-locked icon-big"></i>
<h3>Safe Transfers</h3>
<p>Your payements are safe with us</p>
</div>
<div class="col span-1-of-4">
<i class="ion-cash icon-big"></i>
<h3>No Hidden Costs</h3>
<p>Taxes,tolls and gratuity included</p>
</div>
</div>
</section>
<section class="store">
<div class="row">
<h2>Book an auto from the App</h2>
<p>Download the app for exclusive deals and ease of booking</p>
</div>
<div class="row">
<div class="col span-1-of-2">
<img class="aios" src="vendors/images/download-app-android.png">
<img class="aios" src="vendors/images/download-app.svg">
</div>
<div class="col span-1-of-2">
<img class="phone" src="vendors/images/iphone-160307_1280.png">
<img class="img-phn" src="vendors/images/Capture.PNG">
</div>
</div>
</section>
<section class="js--plans" id="asd">
<div class="row">
<div class="col span-1-of-2">
<div class="sign-box ">
<div>
<i class="ion-android-car icon-big"></i>
<h3>Sign up to drive</h3>
<br>
<p>Drive when you want. Make as much money as you want</p>
</div>
<div>
<a href="reg.html" class="btn btn-full">Sign Up Now</a>
</div>
</div>
</div>
<div class="col span-1-of-2">
<div class="sign-box ">
<div>
<i class="ion-ios-person icon-big"></i>
<h3>Sign up to ride</h3>
<br>
<p >Reliable auto rides in minutes</p>
</div>
<div>
<a href="reg.html" class="btn btn-full">Sign Up Now</a>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="social-link">
<div class="row">
<div class="col span-1-of-2">
<h4>Social Links</h4>
</div>
<div class="col span-1-of-2">
<i class="ion-social-whatsapp icon-small"></i>
<i class="ion-social-facebook icon-small"></i>
<i class="ion-social-instagram icon-small"></i>
<i class="ion-social-twitter icon-small"></i>
</div>
</div>
</div>
</footer>
<script src="https:// ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="./resources/jq/jq.js"></script>
</body>
</html>