You are on page 1of 4

Fish Creek Animal Clinic 1 Codes

index.html
<!DOCTYPE HTML>
<!--Stephen Abraham -->
<html lang ="en">
<head>
<title>Fish Creek Animal Hospital</title>
<link rel="stylesheet" href="fishcreek.css">
</head>

<body>
<div id="wrapper">
<header>
<h1>Fish Creek Animal Hospital</h1>
</header>
<nav>
<b><a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href=>Ask the Vet</a>
<a href=>Contact</a></b>

</nav>

<br>
<main>
<h2>Professional, Compassionate Care for Your Pet</h2>
<p>The caring doctors and staff at Fish Creek Animal Clinic understand the
special bond you share with your cherished pet.</p>
<dl>
<dt><b>Years of Experience</b></dt>
<dd>Fish Creek Veterinarians have provided personalized and
compassionate care<br>
since 1984.</dd>
<dt><b>Open Door Policy</b></dt>
<dd>We welcome owners to stay with their pets during any medical
procedure.</dd>
<dt><b>Always Available</b></dt>
<dd> Our professionals are on duty 24 hours a day, 7 days a week.</dd>
</dl>
<br>
Fish Creek Animal Clinic<br>
800-555-5555<br>
12456 Grassy Lane<br>
Fish Creek, WI 55534
<br>
</main>
<br>

<footer>
Copyright &copy; 2023 Fish Creek Animal Hospital<br>
<a href="mailto:lorencejoshuaaguilar1@gmail.com"
target="_blank">lorencejoshua@aguilar.com</a>
</footer>
</div>
</body>
</html>

services.html
<!DOCTYPE HTML>

<html lang ="en">


<head>
<title>Fish Creek Animal Hospital Services</title>
<meta charset ="utf-8">
<link rel="stylesheet" href="fishcreek.css">
</head>

<body>

<div id="wrapper">'
<header>
<h1>Fish Creek Animal Hospital</h1>
</header>

<nav>
<b><a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href=>Ask the Vet</a>
<a href=>Contact</a></b>

</nav>
<main>

<ul>
<li><b>Medical Services</b><br>
Our facility has state-of-the-art equiment and technology.</li>
<li><b>Surgical Services</b><br>
We offer a full range of surgical proceduresd including orthopedics
and emergency<br>
surgeries.</li>
<li><b>Dental Care</b><br>
A dental exam can determine whether yout pet needs preventive
dental care such<br>
as scaling and polishing.</li>
<li><b>House Calls</b><br>
The elderly,physically challenged, and multiple pet households
often find our in-<br>
home veterinary service helpful and convenient.</li>
<li><b>Emergencies</b><br>
You can reach us any time.At least one of our doctors is on call
every day and night.</li>
</ul>

</main>
<footer>

Copyright &copy; 2023 Fish Creek Animal Hospital<br>


<a href="mailto:lorencejoshuaaguilar1@gmail.com"
target="_blank">lorencejoshua@aguilar.com</a>
</footer>

</div>
</body>
</html>

fishcreek.css
body {
background-color: #FFFFFF;
color: #003366;
background-repeat: repeat-x;
font-family: Verdana, Arial, sans-serif;
}
header {
background-color: #003366;
color: #AEC3E3;
font-family: Georgian, Times New Roman;
}
h1 {
line-height: 200%;
text-indent: 1em;
}
h2 {
font-size: 1.2em;
}
nav {
font-weight: bold;
}
dt {
color: #5280C5;
font-size: 1.1em;
font-weight: bold;
font-family: Georgian, Times New Roman;
}
#wrapper {
width: 90%;
margin-right: auto;
margin-left: auto;
background-color: #F0F0F0;
}

You might also like