-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
58 lines (56 loc) · 2.9 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - 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="contact-info" style="font-size: 1rem; line-height: 1.5;">
<h2 style="font-size: 1.5rem; font-weight: bold;">Contact Us</h2>
<div class="contact-item" style="margin: 1rem 0;">
<strong style="display: block; font-size: 1.2rem; font-weight: bold;">All Services By Appointment Only.</strong>
<p style="margin: 0.5rem 0;">Everyday<br>6am to 6pm</p>
<a href="mailto:[email protected]" style="color: #0000EE; text-decoration: underline;">Book Appointment</a>
</div>
<div class="contact-item" style="margin: 1rem 0;">
<strong style="display: block; font-size: 1.2rem; font-weight: bold;">General Inquiries</strong>
<p style="margin: 0.5rem 0;"><a href="mailto:[email protected]" style="color: #0000EE; text-decoration: underline;">[email protected]</a></p>
</div>
<div class="contact-item" style="margin: 1rem 0;">
<strong style="display: block; font-size: 1.2rem; font-weight: bold;">Phone</strong>
<p style="margin: 0.5rem 0;">Call / Text<br>(929) 569-9420</p>
</div>
<div class="contact-item" style="margin: 1rem 0;">
<strong style="display: block; font-size: 1.2rem; font-weight: bold;">Instagram</strong>
<p style="margin: 0.5rem 0;"><a href="https://www.instagram.com/driverspecgarage/" style="color: #0000EE; text-decoration: underline;">@driverspecgarage</a></p>
</div>
</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>