Bootstrap学习笔记

  Bootstrap2和3还是有很大的区别的,3主要是针对移动设备优先。用这个技术我们可以提高开发的效率。

    用这个技术开发出来的东西是响应式的布局。

        

<html>
<head>
	<meta charset="utf-8">
	<title>基本的结构</title>
	<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
	<script type="text/javascript" src="bootstrap/js/jquery-1.9.1.js"></script>
	<script type="text/javascript" src = "bootstrap/js/bootstrap.js"></script>
//这个是必须的做响应式布局	
<meta name="viewport" content="width-device-width,initial-scale=1">





</head>
<body>
	<div class="container"></div>

	<h1 class="page-header">你好,Bootstrap</h1>




</body>
</html>

  

posted on 2015-09-23 10:55  airycode  阅读(151)  评论(0)    收藏  举报

导航