2015-01-16 60 views
-7

如何將Bootstrap添加到我的HTML頁面。 我一直在尋找,但是,我不明白。 我只是想知道要包括在這個要求和meta標籤。如何添加Bootstrap?

<html> 
<head><title>Cube</title></head> 
<body> 
    <div class="info">Hello Everyone</div> 
</body> 
</html> 
+1

在bootstrap網站上有例子。 –

+1

*我一直在嘗試搜索,但... *呃,[你做錯了](http://getbootstrap.com/getting-started/#template)。 –

+0

我建議你從bootstrap網站下載lib和示例 – atmd

回答

3

通過加入CDN

 <html> 
     <head> 
      <title>Cube</title> 
      <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> 
<!-- Latest compiled and minified CSS --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> 
     </head> 

     <body> 
      <div class="info">Hello Everyone</div> 
     </body> 
     </html> 
+0

如何檢查它是否添加? –

+0

@VatsalSharma通過複製我的例子 –

+2

這甚至不是一半的東西。只需使用bootstrap網站上的示例。 –

2

的例子來看看這個頁面 - http://getbootstrap.com/getting-started/

下面這段代碼將給你一個基本的HTML頁面,但我建議你閱讀文檔和學習如何只包含你需要的組件。

如果您通常只是少數的javascript組件(或者它們中沒有一個),那麼包含完整文件的內容很少。 CSS也是一樣。你只會給頁面增加不必要的重量。

例如,只需使用引導程序網格並且不需要其他組件,只要這是您所需要的。

如果您不熟悉它,您將需要閱讀文檔以瞭解如何使用構建於引導程序中的所有內容,因此在開始開發之前先探索該網站將是一個不錯的主意。

<!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 101 Template</title> 

    <!-- Bootstrap --> 
    <!-- Latest compiled and minified CSS --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> 

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> 
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> 
    <!--[if lt IE 9]> 
     <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> 
     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 
    <![endif]--> 
    </head> 
    <body> 
    <h1>Hello, world!</h1> 

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> 
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
    <!-- Include all compiled plugins (below), or include individual files as needed --> 
    <!-- Latest compiled and minified JavaScript --> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> 
    </body> 
</html>