-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
71 lines (69 loc) · 2.55 KB
/
Copy pathindex.php
File metadata and controls
71 lines (69 loc) · 2.55 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
<!DOCTYPE html>
<html>
<head>
<title>Upholstery Doctor | Automotive & Furniture Upholstery</title>
<meta charset="utf-8">
<meta name="viewport" content= "initial-scale=1">
<meta name="description" content="Upholstery Doctor offers upholstery and repair services in St. George, Utah and surrounding areas. Upholstery services include automotive, furniture, ATVs, RVs, boats, and more.">
<link rel="stylesheet" href="style/style.css" type="text/css" media="all"/>
<link rel="stylesheet" href="style/index.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 = 'Home' ?>
<div id="container">
<div id="header-container">
<?php include('includes/header.php'); ?>
<div id="home-intro">
<img id="header-img" src="images/index/home-page-photo.jpg" alt="The Doctor Will See Your Now">
<div id="home-intro-text">
<h1>THE DOCTOR WILL</h1>
<h1>SEE YOU NOW</h1>
<h2>Upholstery & Repair</h2>
</div>
<div id="home-intro-links">
<a href="services.php#furniture">
<img src="images/index/residential-icon.png" alt="residential services icon">
</a>
<a href="services.php">
<div class="circle">
<img src="images/index/auto-icon.png" alt="automotive services icon">
</div>
</a>
<a href="about.php">
<span>Learn<br>More</span>
</a>
</div>
</div>
</div>
<div id="content-container">
<?php include('includes/decor.php'); ?>
<div id="content">
<div id="home-left">
<div id="video-wrapper">
<iframe width="560" height="315" src="//www.youtube.com/embed/2KAQ8_PnLR0?rel=0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div id="home-right">
<a href="gallery.php">See More</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>
</div>
<?php include('includes/mobile-menu.php'); ?>
</body>
</html>