-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrides.html
More file actions
54 lines (54 loc) · 1.57 KB
/
Copy pathrides.html
File metadata and controls
54 lines (54 loc) · 1.57 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rides</title>
<link rel="stylesheet" type="text/css" href="defaultstyle.css">
<link rel="stylesheet" type="text/css" href="mystyle.css">
<link href="https://fonts.googleapis.com/css?family=Titan+One" rel="stylesheet">
</head>
<body>
<h1>
Ride-My-Way
</h1>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="rides.html" class="active">Rides</a></li>
<li><a href="drivers.html">Drivers</a></li>
<li><a href="contact.html">Contact</a></li>
<li style="float:right"><a href="Signup.html">Signup</a></li>
<li style="float:right"><a href="Login.html">Login</a></li>
</ul>
</div>
<p>
<table class="ridemytable">
<center style="font-size: 30px; padding: 20px;"><h2>Available Rides</h2></center>
<th>ID</th>
<th>Driver</th>
<th>Route</th>
<th>Time</th>
<tr>
<td>01</td>
<td>Teddy Kavooh</td>
<td>Vota - Machakos</td>
<td>5:30am</td>
<td><div class="tooltip"><div class="tooltip"><a href="">Call-My-Ride</a><span class="tooltiptext">Ride available only to logged in users!</span>
</div></div></td>
</tr>
<tr>
<td>02</td>
<td>Ian Maingi</td>
<td>Machakos - Nairobi</td>
<td>6:10am</td>
<td><div class="tooltip"><div class="tooltip"><a href="">Call-My-Ride</a><span class="tooltiptext">Ride available only to logged in users!</span>
</div></div></td>
</tr>
</table>
</p>
<br>
<div id="footer">
<p>© 2018 Ride-My-Way All Rights Reserved | Antony Kavooh</p>
</div>
</body>
</html>