Bootstrap Resources

Lots of great online resources for creating Bootstrap code

Bootstrap lets you create website quicker and easier.  Just add the stylesheet then select the class you wan to use.  Its that easy, and anyone can use it.

Bootstrap is a free and open-source front-end web framework for designing websites and web applications. It contains HTML- and CSS-based design templates for typography, forms, buttons, navigation and other interface components, as well as optional JavaScript extensions. Unlike many web frameworks, it concerns itself with front-end development only.

Getting bootstrap

http://getbootstrap.com/getting-started/

http://v4-alpha.getbootstrap.com/getting-started/introduction/

Examples

http://getbootstrap.com/getting-started/#examples

http://getbootstrap.com/examples/theme/

Best Web resources for Bootstrap

http://www.bootply.com/

http://www.layoutit.com/

https://www.boottheme.com/

https://bootswatch.com/

http://www.plugolabs.com/twitter-bootstrap-button-generator/

http://bootsnipp.com/buttons

Bootstrap Starter Template with CDN

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title>Bootstrap 101 Template</title>
    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <h1>Hello, world!</h1>
    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

***
Do Not Sell My Personal Information