-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathservices.html
More file actions
42 lines (42 loc) · 1.5 KB
/
services.html
File metadata and controls
42 lines (42 loc) · 1.5 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
<!doctype html>
<html>
<head>
<title>Fish Creek Animal Hospital - Services</title>
</head>
<body>
<div class="wrapper">
<header>
<h1>Fish Creek Animal Hospital</h1>
<h2>Services</h2>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="ask_the_vet.html">Ask The Vet</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h2>Medical Services</h2>
<p>We offer state-of-the-art equipment and technology.</p>
<h2>Surgical Services<h2>
<p>Full range of surgical procedures including orthopedics and emergency surgeries.</p>
<h2>Dental Care</h2>
<p>A dental exam can determine whether your pet needs preventive dental care such as scaling and polishing.</p>
<h2>House Calls</h2>
<p>The elderly, physically challenged, and multiple pet households often find our in-home veterinary service helpful and convenient.</p>
<h2>Emergencies</h2>
<p>At least one of our doctors is on call every day and night.</p>
</main>
<footer>
<address>
1-800-555-5555<br/>
1242 Grassy Lane<br/>
Fish Creek, WI 55534<br/>
</address>
<p>Copyright © 2016 Fish Creek Animal Hospital<br><a href="mailto:webdevfun@johan-martin.com">Johan Martin</a></p>
</footer>
</div>
</body>
</html>