Transcript
Page 1: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 2: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 3: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 4: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 5: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 6: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 7: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 8: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 9: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework

credit: http://www.aic.cuhk.edu.hk/web8/Reinventing%20the%20wheel.htm

Page 10: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 11: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 12: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 13: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 14: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 15: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 16: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 17: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 18: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 19: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 20: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 21: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 22: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework

Repeal

Bootstrap

Page 23: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 24: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 25: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 26: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 27: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 28: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 29: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 30: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 31: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 32: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 33: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 34: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 35: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 36: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 37: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 38: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 39: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 40: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 41: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 42: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 43: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 44: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework

<head>

<title>Gaurav Gupta</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" href="css/bootstrap.css">

<link rel="stylesheet" href="css/myCustomStylesheet.css">

<!--[if lt IE 9]>

<script src="js/html5shiv.js"></script>

<script src="js/respond.min.js"></script>

<![endif]-->

</head>

<body>

<header></header>

<nav></nav>

<section></section>

<section></section>

<section></section>

<section></section>

<footer></footer>

<script src="js/jquery.js"></script>

<script src="js/bootstrap.min.js"></script>

</body>

Page 45: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 46: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 47: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 48: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 49: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 50: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework

<div class="row">

<div class="col-md-4">col-md-4</div>

<div class="col-md-8">col-md-8</div>

</div>

col-md-8col-md-4

screen size prefixes

relative width of columns

numbers must add up to 12

Page 51: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 52: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 53: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 54: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 55: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 56: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 57: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 58: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 59: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 60: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 61: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 62: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 63: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 64: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 65: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework

/* myCustomStylesheet.css */

.navbar-default {

background-color: #74716a;

border-color: #FFF;

}

/* bootstrap.css */

.navbar-default {

background-color: #f8f8f8;

border-color: #e7e7e7;

}

Page 66: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 67: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 68: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 69: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 70: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 71: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 72: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 73: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 74: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 75: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 76: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 77: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 79: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 80: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 81: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 82: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 83: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 84: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 85: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 86: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 87: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 88: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 89: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 90: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 91: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework
Page 92: Stop Reinventing the Wheel - Faster Web Development with Bootstrap Framework

Recommended