<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"> <caption>基本的表格布局</caption> <thead> <tr> <th>名称</th> <th>城市</th> </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>
标签:bootstrap,副标题,h2,标签,布局,h1 From: https://www.cnblogs.com/wangyueshuo/p/17227983.html