-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Business - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">CarBusiness 7</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section class="hero">
<h1>Find Your Dream Car Today</h1>
<p>Explore our wide range of luxury and affordable cars.</p>
<a href="products.html" class="btn">View Products</a>
</section>
</main>
<footer>
<p>© 2024 CarBusiness 7. All rights reserved.</p>
</footer>
</body>
</html>