修改網頁標題

請修改``````我的網站

佈局容器

Bootstrap需要為頁面內容和柵格系統包裹一個.container容器。我們提供了兩個作此用處的類。注意,由於padding等屬性的原因,這兩種容器類不能互相嵌套。

.container類用於固定寬度並支持響應式佈局的容器。

<div  class= "container" >
  ...
</div>

.container-fluid類用於100%寬度,佔據全部視口(viewport)的容器。

<div  class= "container-fluid" >
  ...
</div>

網格

實例

    <style>
      .show-grid {
          margin-bottom: 15px;
      }

      .show-grid [class^=col-] {
          padding-top: 10px;
          padding-bottom: 10px;
          background-color: #eee;
          background-color: rgba(86,61,124,.15);
          border: 1px solid #ddd;
          border: 1px solid rgba(86,61,124,.2);
      }
    </style>

    <div  class= "container-fluid">
      <div  class= "row  show-grid" >
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1 " > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md -1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
        <div  class= "col-md-1" > .col-md-1 </div>
      </div>
      <div  class= "row show-grid" >
        <div  class= "col-md-8" > .col-md -8 </div>
        <div  class= "col-md-4" > .col-md-4 </div>
      </div>
      <div  class= "row show-grid" >
        <div  class= "col-md-4 " > .col-md-4 </div>
        <div  class= "col-md-4" > .col-md-4 </div>
        <div  class= "col-md-4" > .col-md -4 </div>
      </div>
      <div  class= "row show-grid" >
        <div  class= "col-md-6" > .col-md-6 </div>
        <div  class= "col-md-6 " > .col-md-6 </div>
      </div>
    </div>

按鈕

a 的屬性

href 規定鏈接指向的頁面的URL
target 規定在何處打開鏈接文檔。

button 連結的方法

onclick="window.location.href='http://tw.yahoo.com'"

<!DOCTYPE html>
<html  lang= "zh-TW" >
  <head>
    <meta  charset= "utf-8" >
    <meta  http-equiv= "X-UA-Compatible"  content= "IE=edge" >
    <meta  name= "viewport"  content= "width=device-width, initial-scale=1">
    <!--上述3個meta標籤*必須*放在最前面,任何其他內容都*必須*跟隨其後!-->
    <title> 按鈕 </title>

    <!-- Bootstrap -->
    <link  href= "css/bootstrap.min.css"  rel= "stylesheet" >

    <!-- 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="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <div  class= "container" >
      <h1>按鈕 button</h1>
      <div class="row">
        <div class="col-md-12">
          <!-- Standard button -->
          <button  type= "button"  class= "btn btn-default" >(默認樣式)Default </button>

          <!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
          <button  type= "button"  class= "btn btn-primary" >(首選項)Primary </button>

          <!-- Indicates a successful or positive action -->
          <button  type= "button"  class= "btn btn-success" >(成功)Success </button>

          <!-- Contextual button for informational alert messages -->
          <button  type= "button"  class= "btn btn-info" >(一般信息)Info </button>

          <!-- Indicates caution should be taken with this action -->
          <button  type= "button"  class= "btn btn-warning" >(警告)Warning </button>

          <!-- Indicates a dangerous or potentially negative action -->
          <button  type= "button"  class= "btn btn-danger" >(危險)Danger </button>

          <!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
          <button  type= "button"  class= "btn btn-link" >(鏈接)Link </button>

        </div>
      </div>
    </div>

    <div  class= "container" >
      <h1>按鈕 a</h1>
      <div class="row" >
        <div class="col-md-12">
          <!-- Standard button -->
          <a  type= "button"  class= "btn btn-default" >(默認樣式)Default </a>

          <!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
          <a  type= "button"  class= "btn btn-primary" >(首選項)Primary </a>

          <!-- Indicates a successful or positive action -->
          <a  type= "button"  class= "btn btn-success" >(成功)Success </a>

          <!-- Contextual button for informational alert messages -->
          <a  type= "button"  class= "btn btn-info" >(一般信息)Info </a>

          <!-- Indicates caution should be taken with this action -->
          <a  type= "button"  class= "btn btn-warning" >(警告)Warning </a>

          <!-- Indicates a dangerous or potentially negative action -->
          <a  type= "button"  class= "btn btn-danger" >(危險)Danger </a>

          <!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
          <a  type= "button"  class= "btn btn-link" >(鏈接)Link </a>

        </div>
      </div>
    </div>


    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src= "//cdn.bootcss.com/jquery/1.11.3/jquery.min.js" ></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src= "js/bootstrap.min.js" ></script>
  </body>
</html>