-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
44 lines (30 loc) · 1.25 KB
/
test.html
File metadata and controls
44 lines (30 loc) · 1.25 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
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Vehicle Reservation System</title>
</head>
<body>
<table width="100%" style="height: 100%;" id="table" cellpadding="10" cellspacing="0" border="0">
<tr>
<!-- ============ HEADER SECTION ============== -->
<td colspan="3" class="Site_name" style="height: 100px;" bgcolor="#f0f0f0"><h2>Vehicle Reservation System</b></br>Online booking Portal</h2></td></tr>
<!-- ============ NAVIGATION BAR SECTION ============== -->
<tr><td colspan="3" valign="middle" height="30" bgcolor="#a9ae9f"><a href="C:\Users\589675\Desktop\test.html">Home</a></td></tr>
<tr>
<!-- ============ LEFT COLUMN (MENU) ============== -->
<td width="33%" valign="top" bgcolor="#999f8e">
<a href="driver.html"><h2>Add a Driver</h2></a><br>
</td>
<!-- ============ MIDDLE COLUMN (CONTENT) ============== -->
<td width="33%" valign="top" bgcolor="#d2d8c7">
<a href="booking.html"><h2>Book a Vehicle</h2></a><br>
</td>
<td width="33%" valign="top" bgcolor="#999f8e">
<a href="car.html"><h2>Add Car Inventory</h2></a><br>
</td>
</tr>
<!-- ============ FOOTER SECTION ============== -->
<tr><td colspan="3" align="center" height="20" bgcolor="#777d6a">Copyright �</td></tr>
</table>
</body>
<html>