forked from Spurthi-Ravula/Group2-Student-Info-Exchange-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ride sharing.html
33 lines (27 loc) · 968 Bytes
/
Ride sharing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ride Sharing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Ride Sharing</h1>
<form id="rideForm">
<label for="from">From:</label>
<input type="text" id="from" name="from" required><br><br>
<label for="to">To:</label>
<input type="text" id="to" name="to" required><br><br>
<label for="date">Date:</label>
<input type="date" id="date" name="date" required><br><br>
<label for="time">Time:</label>
<input type="time" id="time" name="time" required><br><br>
<button type="submit">Need a Ride</button>
</form>
<div id="rideList">
<! Ride is getting ready !>
</div>
<script src="script.js"></script>
</body>
</html>