1.登录Bootstrap官网
点击Download.
2.下载Bootstrap
Download Bootstrap:下载预编译和压缩版Bootstrap(不含文档和源码)。
Download code:Bootstrap源码,如官网介绍,需要编译Less文件 和一些安装。
刚接触Bootstrap的话建议下载第一个,下载下来直接用。
使用Bootstrap进行前端开发
开发环境:WAMP(windows下的Apache + MySQL + PHP)
编辑器:DW
Step 1: 将下载下来的压缩包解压,将里面的css,和js文件夹放到你的工程目录中(即您wamp下的网站根目录了)。在工程根目录中新建了一个”index.html”,用来测试Bootstrap。
Step 2: 编辑”index.html”,使用Bootstrap封装的功能部件。
编写代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>在线尝试 Bootstrap 实例</title>
<link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
Step 3: 在浏览器中打开我们编写好的”index.html”查看。
如果发现有大写的Hello,world!则说明您的Bootstrap安装成功了!