-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiller.php
executable file
·40 lines (38 loc) · 1.06 KB
/
miller.php
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
<?php
require_once 'header.php';
require_once '../includes/functions/display.php';
?>
<div id="topbar">
<div id="title"></div>
<div id="leftnav">
<a href="index.php">
<img alt="home" src="images/home.png"/>
</a>
</div>
<div id="rightnav">
<a href="locations-hours.php">Locations</a>
</div>
</div>
<div id="content">
<span class="graytitle">Miller Branch</span>
<ul class="pageitem">
<li class="textbox">
9421 Frederick Road<br/>Ellicott City, MD 21042<br />
Phone: (410) 313-1950<br /><br />
<?=mbranchHours ("miller")?>
</li>
<li class="menu">
<a class="noeffect" href="http://maps.google.com/maps?q=9421+Frederick+Road,+Ellicott+City,+MD+21042">
<img alt="google maps" src="thumbs/maps.png" />
<span class="name">Open in Google Maps</span><span class="arrow"></span></a>
</li>
<li class="menu">
<a class="noeffect" href="tel:4103131950">
<img alt="telephone" src="thumbs/telephone.png"/>
<span class="name">Contact via telephone</span><span class="arrow"/>
</a>
</li>
</ul>
</div>
<?php require_once 'footer.php';?>
</html>