So I have this HTML code and I ran it through an HTML validation site and it says that I didn't close the "head" section and as a result none of the CSS code I wrote is affecting the text on the page. The link to the CSS file is definitely the right path but I just can't figure out why the code isn't seeing that I closed the "head".
If it helps at all I'm using Dreamweaver CS6 to edit my code.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="Index_Stylesheet.css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Index</title>
</head>
<body>
<!--navigation bar-->
<div class="nav">
<div class="name">
<ul class="pull-left">
<li><a href="#">ANDREW SHAPIRO</a></li>
</ul>
</div>
<div class = "etc">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Commercial</a></li>
<li><a href="#">Listen</a></li>
<li><a href="#">iTunes</a></li>
<li><a href="#">Images</a></li>
<li><a href="#">Store</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Email List</a></li>
</ul>
</div>
</div>
</body>
</html>
Thank you for taking the time to read this!

