Having some trouble with Bootstrap - I'm following a basic tutorial and everything seems to be working fine, except the CSS file isn't loading properly. I've checked on StackOverflow but couldn't find a solution that worked for me. Both my HTML file and the css folder are in the same directory. Here's my code:
<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8”></meta>
<title>Title of My Page</title>
<link rel=”stylesheet” href=”css/bootstrap.css” type=”text/css”/>
</head>
<body>
<div class="container">
<h1><a href="”#”">Bootstrap Site</a></h1>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Downloads</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src=”js/bootstrap.js”></script>
</body>
</html>