I'm working on a site for a class in which we were told to use an external reference for css. Most of the css commands carry over, but all the body commands don't. My css file is below:
Code:
<style type="text/css">
body
{
font-family:"Courier New", Courier, monospace;
background-image: url(file:///H:/web/background);
}
h1
{
background-color: #FFFFFF;
color:black;
border-style:groove;
border-width:thick;
text-align:center;
}
p
{
background-color: #FFFFFF;
border-style:groove;
border-width:5px;
text-align:left;
}
The html command that references that file is as follows:
Code:
<link rel="stylesheet" type="text/css" href="file:///H:/web/csstest.css" />
I have checked the pathways for the background image and css file. Does anyone have an idea as to what's going on?