-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadministration.php
executable file
·36 lines (33 loc) · 1.09 KB
/
administration.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
<?php require_once'header.php';?>
<div id="topbar">
<div id="title"></div>
<div id="leftnav">
<a href="index.php"><img alt="Howard County Library System mobile Website" src="images/home.png"/></a>
</div>
<div id="rightnav">
<a href="locations-hours.php">Locations</a>
</div>
</div>
<div id="content">
<span class="graytitle">Administrative Offices</span>
<ul class="pageitem">
<li class="textbox">
6600 Cradlerock Way<br/>Columbia, MD 21044<br/>
Phone: (410) 313-7750<br/><br/>Mon-Fri 8:30am - 5:30pm
</li>
<li class="menu">
<a class="noeffect" href="http://maps.google.com/maps?q=6600+Cradlerock+Way,+Columbia,+MD+21045">
<img alt="google maps" src="thumbs/maps.png" />
<span class="name">Open in Google Maps</span><span class="arrow"/>
</a>
</li>
<li class="menu">
<a class="noeffect" href="tel:4103137750">
<img alt="Howard County Libray Administrative Offices 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>