-
Notifications
You must be signed in to change notification settings - Fork 0
/
appointment.html
101 lines (90 loc) · 3.98 KB
/
appointment.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Chapel Hill Massage</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<!-- Navbar -->
<div class="navbar-fixed">
<nav class="purple lighten-3" role="navigation">
<div class="nav-wrapper container">
<ul class="right hide-on-med-and-down">
<li><a href="index.html">About</a></li>
<li><a href="bio.html">Meet the Therapists</a></li>
<li><a href="appointment.html">Schedule Appointment</a></li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><a href="index.html">About</a></li>
<li><a href="bio.html">Meet the Therapists</a></li>
<li><a href="appointment.html">Schedule Appointment</a></li>
</ul>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a>
</div>
</nav>
</div>
<!-- PAGE -->
<!-- Header -->
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<h1 class="header center orange-text">Schedule Appointment</h1>
<div class="row center">
<iframe src="https://app.acuityscheduling.com/schedule.php?owner=16913756" width="100%" height="800" frameBorder="0"></iframe><script src="https://d3gxy7nm8y4yjr.cloudfront.net/js/embed.js" type="text/javascript"></script>
</div>
<br><br>
</div>
</div>
<!-- Google maps -->
<div class="container">
<div class="section">
<div class=""><div class=""><iframe width="100%" height="400px" id="gmap_canvas" src="https://maps.google.com/maps?q=chapel%20hill%20massage%201717%20Legion%20Rd%20suite&t=&z=15&ie=UTF8&iwloc=&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe></div><style>.mapouter{text-align:right;height:500px;width:742px;}.gmap_canvas {overflow:hidden;background:none!important;height:500px;width:742px;}</style></div>
</div>
</div>
<!-- FOOTER -->
<footer class="page-footer purple darken-3">
<div class="container">
<div class="row">
<div class="col l4 s12">
<h5 class="white-text">Company Bio</h5>
<p class="grey-text text-lighten-4">Helping you heal since 2004.</p>
</div>
<div class=" col l4 s12">
<h5 class="white-text">Hours</h5>
<ul>
<li><p class="grey-text text-lighten-4">Sunday: 1-9pm</p></li>
<li><p class="grey-text text-lighten-4">Monday: 1-9pm</p></li>
<li><p class="grey-text text-lighten-4">Tuesday: 1-9pm</p></li>
<li><p class="grey-text text-lighten-4">Wednesday: 1-9pm</p></li>
<li><p class="grey-text text-lighten-4">Thursday: 1-4pm</p></li>
<li><p class="grey-text text-lighten-4">Friday: 10am-9pm</p></li>
<li><p class="grey-text text-lighten-4">Saturday: Closed</p></li>
</ul>
</div>
<div class="col l4 s12">
<h5 class="white-text">Contact</h5>
<ul>
<li><p class="grey-text text-lighten-4">Phone: (203) 617-3670</p></li>
<li><p class="grey-text text-lighten-4">Email: [email protected]</p></li>
<li><p class="grey-text text-lighten-4">1717 Legion Rd. Suite 202<br>
Chapel Hill, NC 27514</p></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2018 Chapel Hill Massage
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>