-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
28 lines (28 loc) · 1.31 KB
/
about.php
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
<!-- DOCUMENT BEGINS HERE -->
<!DOCTYPE html>
<html lang = 'en'>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Carbnb - Car Rentals</title>
<!-- Edit Stylesheet at css/about_style.css -->
<link href="css/about_style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main class ='main'>
<!-- Edit NavBar at assets/navbar.php -->
<?php include('assets/navbar.php') ?>
<!-- Page content begins here -->
<div class = "body">
<div class = "about">
<h1>About Our Site</h1>
<br>
<br>
<p>Our site is the product of the idea of a new approach to the pre-existing problem of Car Rentals. Unlike the numerous existing and monotonous systems of registered drivers with their registered cars driving passengers around, our product is the optimal solution for tourists. Our system is depends on car owners who rent out their cars to tourists for their usage within registered dates. Since tourism agencies have group restrictions, and cab rentals have a fixed driver, our system provides the best of both worlds for tourists not requiring drivers and requiring to rent cars for a wide span of days.
</p>
</div>
</div>
</main>
</body>
</html>
<!-- END OF DOCUMENT -->