AllInWorld99 provides a reference manual covering many aspects of web programming, including technologies such as HTML, XHTML, CSS, XML, JavaScript, PHP, ASP, SQL,FLASH, jQuery, java, for loop, switch case, if, if else, for...of, for...in, for...each,while loop, blogger tips, blogger meta tag generator, blogger tricks, blogger pagination, client side script, html code editor, javascript editor with instant output, css editor, online html editor, materialize css tutorial, materialize css dropdown list,break, continue statement, label,array, json, get day and month dropdown list using c# code, CSS button,protect cd or pendrive from virus, cordova, android example, html and css to make android app, html code play,telerik show hide column, Transparent image convertor, copy to clipboard using javascript without using any swf file, simple animation using css, SQL etc. AllInWorld99 presents thousands of code examples (accompanied with source code) which can be copied/downloaded independantly. By using the online editor provided,readers can edit the examples and execute the code experimentally.


 Before you start the bootstrap you should know basic knowledge of following:

 HTML
 (jQuery/JavaScript)
 CSS


   Bootstrap is the free collection tools for creating web applicatioons and web pages.
   Bootstrap contain CSS and HTML design templates for html elements.
   Bootstrap also having optional JavaScript file, for doing action.
   Bootstrap is the opensource so everyone can modified and use freely.
   Many examples available in GitHub website, you can download it and customize you want.
  
Introduction to bootstrap

Why need Bootstrap?

  Browser support: Bootstrap support all popular browser like chrome,firefox,IE and etc...
  Mobile-first approach: Bootstrap contain separate style for mobiles from Bootstrap 3
  Easy to get started: If have basic knowledge of HTML and CSS anyone can get started with Bootstrap
  Responsive Web design: Bootstrap will automatically adjust the scree size to desktops,mobile phones and tablets.


Before adding bootstrap to your pages, you should include the following tags
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
-----------
-----------
-----------

"width=device-width" this will set the page to follow the screen-width.

"initial-scale=1" it will set the initial zoom level when the page is loaded first by browser.

Downloading Bootstrap from internet:-
  you can download the full source from the www.getbootstrap.com website.
 
  If you don't like to download bootstrap and host yourself then you can include directly from the following link.

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

<!-- Optional: Include the jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Optional: Incorporate the Bootstrap JavaScript plugins -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

Advantage of include the Bootstrap from CDN:-
  If the user already visited the CDN included bootstrap, the next time the file will be loaded from cache, which leads to faster loading time.


 

 

 

0 comments:

Post a Comment

Total Pageviews