This repository was archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (49 loc) · 2.07 KB
/
index.html
File metadata and controls
58 lines (49 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic page metadata and links to external stylesheets and icons -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Website Landing Page</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<!-- Logo and navigation bar for the website -->
<a href="#" class="logo">Cars.</a>
<!-- Primary navigation -->
<nav class="navbar">
<a href="#" style="--i:1" class="active">Home</a>
<a href="#" style="--i:2">About</a>
<a href="#" style="--i:3">Review</a>
<a href="#" style="--i:4">Featured</a>
<a href="#" style="--i:5">Contact</a>
</nav>
<!-- Social media links with icons from Boxicons -->
<div class="social-media">
<a href="#" style="--i:1"><i class='bx bxl-twitter'></i></a>
<a href="#" style="--i:2"><i class='bx bxl-facebook'></i></a>
<a href="#" style="--i:3"><i class='bx bxl-instagram-alt'></i></a>
</div>
</header>
<section class="home">
<!-- Main banner with a call-to-action button -->
<div class="home-content">
<h1>Car Dealing Experience.</h1>
<h3>Redefined!</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusantium aliquam neque eaque eum commodi assumenda exercitationem quisquam aperiam facilis labore nemo, repellendus perferendis, autem velit libero rem ullam.</p>
<a href="#" class="btn">Explore Cars</a>
</div>
<!-- Decorative image with styling in style.css -->
<div class="home-img">
<div class="rhombus">
<img src="car.png" alt="">
</div>
</div>
<!-- Additional decorative element -->
<div class="rhombus2"></div>
</section>
</body>
</html>