-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (39 loc) · 1.49 KB
/
index.php
File metadata and controls
61 lines (39 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Sell </title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500&display=swap');
</style>
<!-- css -->
<link rel="stylesheet" href="src/style.css">
<link rel="stylesheet" href="src/responsive.css">
<body>
<?php
include 'header.php'
?>
<!-- home page -->
<section>
<div class="landing_page">
<div class="bg_image">
<div class="overlay"></div>
<div class="home_container">
<div class="car_detail">
<h1>Sell Your Cars here</h1>
<p>Welcome to Parramatta Car Sale, your ultimate destination for exceptional automobiles in Parramatta. At Parramatta Car Sale, we don't just sell cars; we provide a gateway to your automotive dreams. Whether you're a first-time buyer, a seasoned enthusiast, or simply looking for reliable transportation, we've got the perfect vehicle waiting just for you.</p>
<a href="login.php"><button class="btn_primary">Login</button></a>
</div>
</div>
</div>
</div>
</section>
<!-- home page ends -->
<script src="src/app.js"></script>
</body>
</html>