-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaskvet.html
executable file
·41 lines (41 loc) · 1.2 KB
/
askvet.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fish Creek Animal Clinic Ask the Vet</title>
<meta charset="utf-8">
<link rel="stylesheet" href="fishcreek.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
<header>
<h1>Fish Creek Animal Clinic</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="askvet.html">Ask the Vet</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<p><a href="contact.html">Contact</a> us if you have a question that you would like answered here.</p>
<dl>
<dt>Our dog, Sparky, likes to eat whatever the kids are snacking on.
Is it OK for the dog to eat chocolate?
</dt>
<dd>Chocolate is toxic to dogs.
Please do not feed your dog chocolate.
Try playing a game with your children — when you feed them people treats,
they can feed Sparky dog treats.
</dd>
</dl>
</main>
<footer>
Copyright © 2018 Fish Creek Animal Clinic<br>
<a href="mailto:yourfirstname@yourlastname.com">yourfirstname@yourlastname.com</a>
</footer>
</div>
</body>
</html>