I have been trying to link my external styles sheet to my html for a while now and I can't seem to make it happen. I have both files saved in the same folder on my desktop and am using text wrangler to write. I can see what the page should look like when I pull it up in finder but when I open the site in a browser it only responds to my html.
This is what I am working with(updated):
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nathan Langer</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="website/style.css"/>
</head>
<header>
<h3>For proffesional and creative video and media production</h3>
</header>
<body>
<div id="name">
<h1>Nathan Langer</h1>
</div>
</body>
<footer>
<nav>
<a href="resume.html">Resume</a>
<a href="portfolio">Portfolio</a>
<a href="aboutme">What I Do</a>
</nav>
</footer>
</html>
This is my css:
body {
background-image: url(images/cool.png);
background-repeat: no-repeat;
background-position: center;
}
#name {
text-align: center;
font-size: 50px;
color: white;
}
nav {
position: center;
}
nav a:hover {text-decoration:none ;}
nav a:visited {color: rgb(256,256,256) ;}
nav a:link {
text-decoration:none ;
color: rgb(256,256,256) ;
}