-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
62 lines (62 loc) · 1.94 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Driver Spec Garage - Services</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Our Services</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section>
<h2>Paint Correction</h2>
<ul>
<li>1 Step</li>
<li>2 Step</li>
</ul>
</section>
<section>
<h2>Ceramic Coating</h2>
<p>Details coming soon.</p>
</section>
<section>
<h2>Packages</h2>
<h3>Stage 1 - (Wash & Seal)</h3>
<p>Designed to remove contamination & protect with spray sealant.</p>
<ul>
<li>Pre Foam</li>
<li>Agitation Wash</li>
<li>Spray Sealant or Wax</li>
<li>Wheels / Tires</li>
<li>Vacuum and Interior Wipe Down</li>
<li>Windows</li>
</ul>
<p>$80.00 cars ~ $100.00 Van / SUV / Large Truck</p>
<h3>Stage 2 - (Full Detail)</h3>
<p>Designed to restore vehicles close to factory interior/exterior condition & protect against future contamination. Recommended for all first-time clients.</p>
<ul>
<li>Pre Wash Active Foam</li>
<li>Agitation Wash</li>
<li>Iron and Tar Removal</li>
<li>Ceramic Paint Sealant</li>
<li>Wheels / Tires</li>
<li>Deep Vacuum, Floor Mats Extracted</li>
<li>Interior Leather Conditioner</li>
<li>Engine Bay</li>
</ul>
<p>$120.00 cars ~ $140.00 Van / SUV / Large Truck</p>
</section>
<footer>
<p>© 2024 Driver Spec Garage</p>
</footer>
</body>
</html>