-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.html
More file actions
128 lines (113 loc) · 4.29 KB
/
Copy pathreview.html
File metadata and controls
128 lines (113 loc) · 4.29 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
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Branding Car</title>
<link rel="stylesheet" href="style.css">
<!-- Google Fontawesome Cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- Header Area Start -->
<header>
<div class="service-section">
<div class="wrapper">
<div class="header-wrapper">
<div class="logo-area">
<img src="img/logo.png" alt="">
</div>
<!-- Navigation Area Start -->
<div class="navigation-area">
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">x</a>
<li><a href="index.html" class="active">HomePage</a></li>
<li><a href="service.html" class="active">Our Services</a></li>
<li><a href="review.html" class="active">Review</a></li>
<li><a href="contact.html" class="active">Contact US</a></li>
<li><a href="404.html" class="active">404 Page</a></li>
</div>
<div id="main">
<button class="openbtn" onclick="openNav()">☰</button>
</div>
<nav>
<ul>
<li><a href="index.html">All Cars</a></li>
<li><a href="service.html">Our Services</a></li>
<li><a href="review.html">Review</a></li>
<li><a href="contact.html">Contact US</a></li>
<li><a href="404.html">404 Page </a></li>
</ul>
</nav>
</div>
</div>
</div>
<!-- Hero Area Start -->
<section class="hero">
<div class="wrapper hero-area">
<h1>Car Reviews</h1>
<p>Read reviews of the latest models and discover the prices and deals</p>
</div>
<div class="review-car">
<img src="img/review-bg.png" alt="">
<div class="ovarlay-text">
<span>Latest Review</span>
<h1>2021 Mercedes-AMG GT</h1>
<p>The GT's robust lineup is gorgeous and balanced for street or track duty. Twin-turbo V-8 <br> makes great power and sounds.</p>
<button class="btn-4">Read Review</button>
</div>
</div>
</div>
</section>
<!-- Hero Area End -->
</header>
<!-- Header Area End -->
<!-- Footer Area Start -->
<footer>
<div class="footer-content">
<div class="wrapper">
<div class="footer-section">
<div class="footer-info">
<img src="img/footer-logo.png" alt="">
<p>Storkower Strasse</p> <br>
<p>41Rheinland-Pfalz,56379, <br>
Germany</p> <br>
<div class="social-img">
<img src="img/facebook.png" alt="">
<img src="img/x.png" alt="">
<img src="img/instagram.png" alt="">
<img src="img/linkedin.png" alt="">
<img src="img/pinterest.png" alt="">
</div>
</div>
<div class="footer-info">
<p>Primary Pages</p> <br>
<a href="index.html">
<p>All Cars </p>
</a><br>
<a href="service.html">
<p>Service</p>
</a> <br>
<a href="review.html">
<p>Review</p>
</a> <br>
<a href="contact.html">
<p>Contact</p>
</a> <br>
<a href="404.html">
<p>404 Page</p>
</a> <br>
</div>
<div class="copyright">
<p>© 2024 All rights reserved WhiteUI.Store</p>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Area End -->
<script src="app.js"></script>
</body>
</html>