- 1
Hey guys, I'm trying to add bootstrap to my code and make my Hello World text turn blue by adding class "text-primary". Help
Adding Bootstrap and Jquery
1 Réponse
+ 1
boot strap has two files... bootstrap.css and bootstrap.js...and because bootstrap js works with jquery you should link 3 docs to your page:
<link href="the address of bootstrap.css"/>
<script src="the address of jquery"></script>
<script src="the address of bootstrap.js"></script>
and for text primary use <p class="text-primary">some text</p>