<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Bootstrap Practice</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container" style="padding:20px 0">
<table class="table table-striped table-bordered table-hover ">
<thead>
<tr>
<th>ID</th><th>Score</th>
</tr>
</thead>
<tbody>
<tr><td>@yamada</td><td>200</td></tr>
<tr><td>@sato</td><td>150</td></tr>
<tr><td>@mori</td><td>230</td></tr>
</tbody>
</table>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Bootstrap Practice</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container" style="padding:20px 0">
<form class="form-horizontal" style="margin-bottom:15px">
<div class="form-group">
<label class="control-label col-sm-2" for="email">Email</label>
<div class="col-sm-4">
<input type="text" id="email" class="form-control" placeholder="email">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-4">
<input type="submit" value="submit" class="btn btn-primary">
</div>
</div>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>