forked from shreyasvinaya/mentee-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.83 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Taxiverse</title>
<link rel="icon" type="image/png" href=#>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script src="./app.js"></script>
</head>
<body>
<div class="main">
<nav>
<span style="width: fit-content;">
<ul>
<li><a href=# class="menu">
<i class="fa fa-user"></i>
</a>
</li>
<li class="title" style="color: black;">Taxiverse</li>
<li><a href=#>About</a></li>
<li><a href=#>Contact</a></li>
<li><a href=#>Login</a></li>
</ul>
</span>
</nav>
<div class="image1">
<div class="darkSq">
<div class="reliable">
Reliable Taxi Services
</div>
<div class="motto">
Please enable location access to search for rides near you.
<button class="book" onclick="getLocation()"> Get my location </button>
</div>
<div class="avail" id="avail">
</div>
<div class="notavail" id="notavail">
</div>
<div style="width: 100%; text-align: center;">
<button class="book" onclick="getLocation()"> Book Now </button>
</div>
</div>
</div>
</div>
</body>