Hello I am tyring to use bootstraps glyphicons but they are not working. Im trying to load glyphicon-ok, glyphicon-remove, and glyphicon-star. but the problem is that these icons load instead. http://imagebin.org/301047
heres my head secion
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap-theme.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
here is my glyphicons
<li>
<a href="#">
<span class="glyphicon glyphicon-ok"></span>
</a>
</li>
<li>
<a href="#">
<span class="glyphicon glyphicon-remove"></span>
</a>
</li>
<li>
<a href="#">
<span class="glyphicon glyphicon-star"></span>
</a>
</li>