-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
90 lines (87 loc) 路 2.99 KB
/
Copy pathindex.php
File metadata and controls
90 lines (87 loc) 路 2.99 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
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
82
83
84
85
86
87
88
89
90
<?php
include('connection.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<title>Automobile Rental System</title>
</head>
<body>
<div class="background-image">
<div class="overlay">
<h1>Welcome to Our Website</h1>
<p>Your journey starts here!</p>
</div>
聽聽聽 </div>
<header>
<h1>Welcome to Our Automobile Rental System</h1>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="aboutus.php">About Us</a></li>
<li><a href="signup.php">Login/Sign Up</a></li>
<li><a href="#Contact">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section class="car-listings">
<h2>Available Cars</h2>
<div class="car">
<img src="images/car1.jpeg" alt="Car 1">
<h3>Car Model 1</h3>
<p>Price: 1000 Rs/day</p>
<a href="signup.php"><button>rent now</button></a>
</div>
<div class="car">
<img src="images/car2.jpeg" alt="Car 2">
<h3>Car Model 2</h3>
<p>Price: 1500 Rs/day</p>
<a href="signup.php"><button>rent now</button></a>
</div>
<div class="car">
<img src="images/car3.jpeg" alt="Car 3">
<h3>Car Model 3</h3>
<p>Price: 2000 Rs/day</p>
<a href="signup.php"><button>rent now</button></a>
</div>
</section>
<section class="Bike-listings">
<h2>Available Bikes</h2>
<div class="Bike">
<img src="images/bike1.jpeg" alt="Bike 1">
<h3>Bike Model 1</h3>
<p>Price: 200 Rs/day</p>
<a href="signup.php"><button>rent now</button></a>
</div>
<div class="Bike">
<img src="images/bike2.png" alt="Bike 2">
<h3>Bike Model 2</h3>
<p>Price: 300 Rs/day</p>
<a href="signup.php"><button>rent now</button></a>
</div>
<div class="Bike">
<img src="images/bike3.jpeg" alt="Bike 3">
<h3>Bike Model 3</h3>
<p>Price: 400 Rs/day</p>
<a href="signup.php"><button>rent now</button></a>
</div>
</section>
</main>
<footer id="Contact">
<section>
<div class="contact-info">
<h2>Contact Us</h2>
<p>Email: info@AutomatedRentalSystem.com</p>
<p>Phone: 620600XXXX</p>
<p>Address: Sector 7, Noida, India</p>
聽聽聽聽聽聽聽聽</div>
<p>© 2024 Automobile Rental System. All rights reserved.</p>
</footer>
</section>
</body>
</html>