-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavailable.html
executable file
·81 lines (78 loc) · 2.25 KB
/
available.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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="for-header">
<header>
<p class="logo">TravelWorld</p>
<nav>
<ul class="nav_links">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#Bus search">Bus search</a></li>
<li><a href="index.html#h1">About Us</a></li>
<li><a href="index.html#h1">Contact Us</a></li>
</ul>
</nav>
<a class="cta" href="signin.html"><button>My Account</button></a>
</header>
</div>
<div class="gradient">
<div class="text">
<h1>Welcome To TravelWorld</h1>
</div>
<form action="" class="cust-info">
<label for="name">Name</label>
<input type="text" name="" id="">
<label for="name">ID Number</label>
<input type="text" name="" id="">
</form>
<form class="container-bus">
<div class="bus">
Bus name: <br>
<select>
<option value="vip">VIP</option>
<option value="standard">Standard</option>
</select>
</div>
<div class="bus">
Schedule: <br>
<select>
<option value="Day">Day</option>
<option value="Night">Night</option>
</select>
</div>
<div class="bus">
Type:<br>
<select>
<option value="70">70 seater</option>
<option value="30">30 seater</option>
</select>
</div>
<div class="bus">
Fare:<br>
<select>
<option value="5500">5500 FCFA</option>
<option value="7000">7000 FCFA</option>
</select>
</div>
<div class="bus">
Availabel seats:<br>
<select>
<option value="70">70 seats</option>
<option value="30">30 seats</option>
</select>
</div>
<div class="bus">
View seats:<br>
<a class="act" href="seat.html">View</a>
</div>
<!-- <div class="bus">
Pay:<br>
<button onclick="alert('No payment method selected');">Pay</button>
</div> -->
</div>
</form>
</body>
</html>