-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
42 lines (40 loc) · 1.6 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop - Driver Spec Garage</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><img src="driver_spec_garage_logo.JPG" alt="Driver Spec Garage Logo"></a>
</div>
<nav>
<ul>
<li class="non-clickable">Services
<ul class="dropdown">
<li><a href="paint-correction.html">Paint Correction</a></li>
<li><a href="ceramic-coating.html">Ceramic Coating</a></li>
<li><a href="packages.html">Packages</a></li>
</ul>
</li>
<li><a href="shop.html">Shop</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="page-content">
<section class="shop-info" style="text-align: center; font-size: 1rem; line-height: 1.5; padding: 2rem;">
<h2 style="font-size: 1.5rem; font-weight: bold;">Stay Tuned</h2>
<p style="font-size: 1rem; font-weight: normal;">Coming Soon</p>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2024 Driver Spec Garage | (929) 569-9420 | <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</footer>
</body>
</html>