I downloaded the Bootstrap code from their site. I wrote following HTML file in the bootstrap directory (so that the relative paths are correct)
<!DOCTYPE html> <html lang = "en"> <head> <title>Test</title> <link href="css/bootstrap.css" rel="stylesheet" type="text/css" /> <script src="http://code.jquery.com/jquery-latest.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> Hello world <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"> <li><a tabindex="-1" href="#">Action</a></li> <li><a tabindex="-1" href="#">Another action</a></li> <li><a tabindex="-1" href="#">Something else here</a></li> <li class="divider"></li> <li><a tabindex="-1" href="#">Separated link</a></li> </ul> </body> </html> When I open that file in chrome, I do not see anything else except "Hello World". I have seen another question Why is my Bootstrap code not working? I have taken care that relative paths are correct, but code is still not working. I am sure its something very silly. Can anyone help me spot it?