-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (79 loc) · 3.1 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home-Page</title>
<link rel="stylesheet" href="/style/master-style.css">
</head>
<body>
<header>
<div class="logo">H&H MERCHANT LTD.</div>
<input type="checkbox" class="checkbox" id="checkbox">
<label for="checkbox" class="burger-icon-container">
<span class="burger-line"></span>
<span class="burger-line"></span>
<span class="burger-line"></span>
</label>
<nav class="nav-link-container">
<a href="#">Home</a>
<a href="#">Car Sale</a>
<a href="#">Accident-Repairs</a>
<a href="#">Portfolio</a>
<button class="contact-btn"><a href="#">CONTACT US</a></button>
</nav>
</header>
<section class="hero-card">
<img class="hero-img-mobile" src="./assets/images/mobile-background.png" alt="ford mustang with neon lights">
<img class="hero-img" src="./assets/images/home.jpeg" alt="">
<h1 class="hero-links-container">
<a class="hero-links" href="#">CARS FOR SALE</a>
<p class="hero-links">+</p>
<a class="hero-links" href="#">BODY WORK</a>
</h1>
</section>
<main>
<h2>about us</h2>
<div class="about-cards">
<div class="about-card">
<img class="card-img" src="./assets/images/about-us/pride-img.webp" alt="">
<div class="card-info">
<h3>Pride</h3>
<p>Here at H&H we take pride
in offering a range of services
to help you get your dream car.</p>
</div>
</div>
<div class="about-card">
<img class="card-img" src="./assets/images/about-us/helpful.jpeg" alt="">
<div class="card-info reverse">
<h3>Helpful</h3>
<p>If you are interested in
replacing or buying a used
vehicle, we are more than happy
to help</p>
</div>
</div>
<div class="about-card">
<img class="card-img" src="./assets/images/about-us/passion.jpeg" alt="">
<div class="card-info">
<h3>Passion</h3>
<p>
Because “we simply love cars</p>
</div>
</div>
<div class="about-card">
<img class="card-img" src="./assets/images/about-us/accountable.jpeg" alt="">
<div class="card-info reverse">
<h3>Accommodating</h3>
<p> If you want to get
your car up to standard,
in a time that suits you
contact us to get a competitive
quote on our range of services.</p>
</div>
</div>
</div>
</main>
</body>
</html>