<!DOCTYPE html> <html lang="en"> <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 rel="stylesheet" href="../dist/css/bootstrap.min.css"> </head> <body> <!--CODE--> <!--JS--> <!-- 若是要使用Bootstrap的js插件,必須先調入jQuery --> <script type="text/javascript" src="../dist/jquery-2.1.4.min.js"></script> <!-- 包括全部bootstrap的js插件或者能夠根據須要使用的js插件調用 --> <script type="text/javascript" src="../dist/js/bootstrap.min.js"></script> </body> </html>
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!--用bootstrap必須加下面的話--> <meta name="viewport" content="width=device-width, initial-scale=1" /> <!-- 上述3個meta標籤**必須**放在最前面,任何其餘內容都*必須*跟隨其後! --> <title>My BootStrapTest</title> <!--引用bootstrap樣式--> <link href="css/bootstrap.min.css" rel="stylesheet" /> <!--bootstrap重置樣式庫--> <link href="css/normalize.css" rel="stylesheet" /> <!--引用jsmin--> <script src="js/jquery-1.11.3.min.js"></script> <!--引用bootstrapjs--> <script src="js/bootstrap.min.js"></script> </head> <body> </body> </html>