-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (120 loc) · 3.39 KB
/
index.html
File metadata and controls
120 lines (120 loc) · 3.39 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>A&O Cars</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="./index.html">
<img src="./assets/carlogo-removebg-preview.png" class="logo-image" alt="company-logo">
</a>
</div>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./pages/signup.html">Sign Up</a></li>
<li><a href="./pages/purchase.html">Purchase</a></li>
<li><a href="./pages/contact-us.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="hero">
<div class="container">
<div class="hero-content">
<h1>A&O Cars</h1>
<p>
At A&O, we redefine the driving experience with cutting-edge technology,
sleek design, and unparalleled performance. From the thrill-seeker to the
eco-conscious commuter, our lineup offers something for every driver.
</p>
<a href="./pages/signup.html"><button>Sign Up</button></a>
</div>
<div class="hero-image">
<img src="./assets/3d-car-with-vibrant-colors-removebg-preview.png" alt="">
</div>
</div>
</section>
<section id="content">
<div class="container">
<h2>Product categories</h2>
<div class="products">
<div class="card">
<figure class="card-image">
<img src="./assets/car1.jpg" alt="">
<figcaption>
Minivan Provides seating for passengers with additional cargo space,
typically with sliding side doors.
</figcaption>
</figure>
</div>
<div class="card">
<figure class="card-image">
<img src="./assets/car2.jpg" alt="">
<figcaption>
Minivan Provides seating for passengers with additional cargo space,
typically with sliding side doors.
</figcaption>
</figure>
</div>
<div class="card">
<figure class="card-image">
<img src="./assets/car3.jpg" alt="">
<figcaption>
Minivan Provides seating for passengers with additional cargo space,
typically with sliding side doors.
</figcaption>
</figure>
</div>
<div class="card">
<figure class="card-image">
<img src="./assets/car4.jpg" alt="">
<figcaption>
Minivan Provides seating for passengers with additional cargo space,
typically with sliding side doors.
</figcaption>
</figure>
</div>
</div>
</div>
</section>
<section id="quote">
<div class="container">
<blockquote>
<p>
"Good cars get you from point A to point B. Great cars... well,
they just might take you everywhere else you've ever dreamed of."
</p>
<cite>- Thor</cite>
</blockquote>
</div>
</section>
<section id="cta">
<div class="container">
<div class="cta-box">
<div class="cta-text">
<h4>Join our community of car enthusiasts today!</h4>
<p>
Subscribe to our weekly newsletter for the latest automotive updates, trends,
and insider insights.
</p>
</div>
<a href="./pages/signup.html"><button>Sign Up</button></a>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 A&O Cars</p>
</div>
</footer>
</body>
</html>