-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (48 loc) · 1.31 KB
/
Copy pathindex.php
File metadata and controls
48 lines (48 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Upholstery Doctor</title>
<link rel="stylesheet" href="style/index.css" type="text/css" media="all"/>
<link rel="stylesheet" href="style/style.css" type="text/css" media="all"/>
</head>
<body>
<?php $page = 'Home' ?>
<div id="container">
<div id="home-header-container">
<div id="header-nav">
<?php include('includes/header.php'); ?>
</div>
<div id="home-intro">
<div id="home-intro-big">
<h1>THE DOCTOR WILL</h1>
<h1>SEE YOU NOW</h1>
</div>
<div id="home-intro-circles">
<h2>Upholstery & Repair</h2>
<a href="services.php">
<div id="res-circle" class="my-circles">
<span>Residential</span>
</div>
</a>
<a href="services.php">
<div id="bus-circle" class="my-circles">
<span>Commercial</span>
</div>
</a>
<a href="services.php">
<div id="auto-circle" class="my-circles">
<span>Automotive</span>
</div>
</a>
</div>
<div id="home-to-contact-btn">
<a href="contact.php">Contact Us</a>
</div>
</div>
</div>
</div>
<?php include('includes/mobile-menu.php'); ?>
</body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="javascript/mobile-menu.js"></script>
</html>