bootstrap布局

 

 

<html>
<head>
    <title>布局</title>
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">  
    <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
    <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
    <h1>我是标签h1. <small>我是副标题h1.</small></h1>
    <h2>我是标签h2. <small>我是副标题h2.</small></h2>
   
    <table class="table table-striped">
        <caption>基本的表格布局</caption>
        <thead>
          <tr>
            <th>名称</th>
            <th>城市</th>5
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Tanmay</td>
            <td>Bangalore</td>
          </tr>
          <tr>
            <td>Sachin</td>
            <td>Mumbai</td>
          </tr>
            <tr>
              <td>Tan</td>
              <td>Ban</td>
            </tr>
            <tr>
              <td>Sa</td>
              <td>Mu</td>
            </tr>
          </tbody>
      </table>
</body>
</html>

 

posted @ 2023-03-17 19:46  王ys  阅读(17)  评论(0编辑  收藏  举报