Hi everyone, I'm a beginner learning html. I am trying to use an external css style sheet and I'm not sure why my external style sheet is not working(It's not bolding or italizing,etc when I view it in my mozilla firefox browser. Any suggestions? here is my html code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fish Creek Animal Hospital</title>
<meta charset="utf-8">
</head>
<link href="fishcreek.css"rel="stylesheet">
<body>
<h1>Fish Creek Animal Hospital</h1>
<div class="nav">
<p><a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="askvet.html">Ask the Vet</a>
<a href="contact.html">Contact</a></p>
</div>
<dt class="category">
Full Service Facility</dt>
<p><blockquote>Veterinarians and staff are on duty 24 hours a day, 7 days a week.</blockquote></p>
<dt><strong>Years of Experience</strong></dt>
<p><blockquote>Fish Creek Veterinarians have provided quality, dependable care for your beloved animals since 1984.</blockquote></p>
<dt><strong>Open Door Policy</strong></dt>
<p><blockquote>Our professionals welcome owners to stay with their pets during any medical procedure.</blockquote></p>
<p><div>1-800-555-5555<br>
1242 Grassy Lane<br>
Fish Creek, WI 55534
</p></div>
<div id="footer">Copyright © 2013 Fish Creek Animal Hospital<br>
Angela@Angela.com
</div>
</body>
</html>
This is my external .css
body {background-color:#6699ff;
color:#d5e3ff;
font-family:Veranda, Arial, sans-serif;}
h1 {background-color:#6699ff;
color:#003366;
font-family:serif font;
line-height:200%;}
nav { font-weight: bold; }
category {font-weight:bold;
background-color:#6699ff;
color:#003366;
font-size:1.1em;}
footer{font-size:.70em;
font-style:italic;}