-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.php
More file actions
112 lines (107 loc) · 3.81 KB
/
Copy pathservices.php
File metadata and controls
112 lines (107 loc) · 3.81 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
<!DOCTYPE html>
<html>
<head>
<title>Services Upholstery Doctor | Automotive & Furniture | Upholstery & Repair</title>
<meta charset="utf-8">
<meta name="viewport" content= "initial-scale=1">
<meta name="description" content="Upholstery Doctor provides upholstery services for automotive, furniture, ATVs, RVs, boats and much more. We have more than 20 years of experience in the upholstery and repair industry.">
<link rel="stylesheet" href="style/services.css" type="text/css" media="all"/>
<link rel="stylesheet" href="style/style.css" type="text/css" media="all"/>
<link rel="icon" type="image/png" href="images/favicon.png">
<!-- google -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56769748-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<?php $page = 'Services' ?>
<div id="container">
<div id="header-container">
<?php include('includes/header.php'); ?>
<div id="header-intro">
<h1>What Do We Do?</h1>
</div>
</div>
<div id="content-container">
<?php include('includes/decor.php'); ?>
<div id="content">
<div id="auto" class="service">
<h1>Automotive</h1>
<div class="service-left" >
<div class="service-img">
<span class="service-state" id="auto-state">
Before
</span>
<img src="images/services/auto-before.jpg" alt="before picture of automobile" >
<div class="state-btn-container">
<span id="auto-state-before" class="state-btn">
Before
</span>
<span id="auto-state-after" class="state-btn">
After
</span>
</div>
</div>
</div>
<div class="service-right">
<ul>
<li><span>Leather/Fabric Repairs</span></li>
<li><span>Custom Interiors</span></li>
<li><span>Factory Seat Covers</span></li>
<li><span>Seat Heaters</span></li>
<li><span>Convertiable Tops</span></li>
<li><span>ATVs</span></li>
<li><span>RVs</span></li>
<li><span>Boats</span></li>
</ul>
</div>
<a href="gallery.php" class="services-link">Our Work</a>
</div>
<div id="furniture" class="service">
<h1>Furniture</h1>
<div class="service-left" >
<div class="service-img">
<span class="service-state" id="furniture-state">
Before
</span>
<img src="images/services/chair-before.jpg" alt="before picture of a chair" >
<div class="state-btn-container">
<span id="furniture-state-before" class="state-btn">
Before
</span>
<span id="furniture-state-after" class="state-btn">
After
</span>
</div>
</div>
</div>
<div class="service-right">
<ul>
<li><span>Leather/Fabric Repairs</span></li>
<li><span>Custom Upholstery</span></li>
<li><span>Custom Furniture</span></li>
<li><span>Seat Cushions</span></li>
<li><span>Furniture Repair</span></li>
<li><span>Slip Covers</span></li>
<li><span>Pillows</span></li>
</ul>
</div>
<a href="gallery.php" class="services-link">Our Work</a>
</div>
</div>
</div>
<div id="footer-container">
<?php include('includes/footer.php'); ?>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/mobile-menu.js"></script>
<script src="js/services.js"></script>
</div>
<?php include('includes/mobile-menu.php'); ?>
</body>
</html>