table

table

<!DOCTYPE html>
<html lang="ja">
  <head>
  <meta charset="utf-8">
    <title>Bootstrap table</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- Bootstrap -->
    <link href="../css/bootstrap.min.css" rel="stylesheet">

    <!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
      <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
<div class="container">
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr><th>ID</th><th>SCORE</th></tr>
</thead>
<tbody>
<tr><td>001</td><td>95</td></tr>
<tr class="warning"><td>002</td><td>65</td></tr>
<tr><td>003</td><td>75</td></tr>
<tr><td>004</td><td>75</td></tr>
<tr><td>005</td><td>75</td></tr>
<tr class="danger"><td>006</td><td>75</td></tr>
<tr><td>007</td><td>75</td></tr>
</tbody>
</table>
</div>
    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://code.jquery.com/jquery.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="../js/bootstrap.min.js"></script>
  </body>
</html>