<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap的HTML標準模板</title> <!-- Bootstrap --> <link href="static/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- 如下兩個插件用於在IE8以及如下版本瀏覽器支持HTML5元素和媒體查詢,若是不須要用能夠移除 --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <h1>Hello, world!</h1> <!-- 若是要使用Bootstrap的js插件,必須先調入jQuery --> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script> <!-- 包括全部bootstrap的js插件或者能夠根據須要使用的js插件調用 --> <script src="static/lib/bootstrap/js/bootstrap.min.js"></script> </body> </html>