-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (81 loc) · 3.38 KB
/
index.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
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Dealership Landing Page</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Neris:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="script.js"></script>
</head>
<body>
<header>
<div class="logo">
<img src="logocar.png" alt="Logo">
<h1>Exotic Drive</h1>
</div>
<nav>
<button><a href="#">Home</a></button>
<button><a href="#">Models</a></button>
<button><a href="#">Services</a></button>
<button><a href="#">Contact</a></button>
</nav>
</header>
<section class="hero">
<div class="container">
<h2 id="changing-text">Discover Your Dream Car</h2>
<p>Explore our wide range of vehicles and find the perfect one for you.</p>
<a href="#" class="cta-button">View Inventory</a>
</div>
</section>
<section class="features">
<p style="color:white;font-weight: bolder;font-size:50px;">OUR MOST LOVED CARS</p>
<div class="container">
<div class="feature">
<img src="sedan.jpg" alt="Sedan">
<h3>Sedans</h3>
<p>Experience luxury and comfort in our sedan models.</p>
</div>
<div class="feature">
<img src="suv.jpg" alt="SUV">
<h3>SUVs</h3>
<p>Powerful and versatile SUVs for your adventurous lifestyle.</p>
</div>
<div class="feature">
<img src="electric.jpg" alt="Electric Car">
<h3>Electric Vehicles</h3>
<p>Drive into the future with our eco-friendly electric cars.</p>
</div>
<div class="feature">
<img src="sports.jpg" alt="Sports Car">
<h3>Sports Cars</h3>
<p>Feel the thrill of our high-performance sports car lineup.</p>
</div>
<div class="feature">
<img src="luxury.jpg" alt="Luxury Car">
<h3>Luxury Vehicles</h3>
<p>Indulge in elegance with our premium luxury vehicle collection.</p>
</div>
<div class="feature">
<img src="classic.jpg" alt="Classic Car">
<h3>Classic Cars</h3>
<p>Rediscover history with our curated collection of classic automobiles.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Exotic Drive. All rights reserved.</p>
<div class="social-media">
<a href="#"><i class="fa fa-facebook-f"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
</div>
<div class="disclaimer">
<p style="color: brown;">Disclaimer: Prices and availability subject to change without notice. Images are for illustration purposes only.</p>
</div>
</div>
</footer>
</body>
</html>