01.
<div
class
=
"container"
>
02.
<div
class
=
"row"
>
03.
<div
class
=
"col-md-12"
>
04.
<h1>Bootstrap Grid system</h1>
05.
</div>
06.
<div
class
=
"col-md-6"
>
07.
<table
class
=
"table"
>
08.
<thead>
09.
<tr>
10.
<th>#</th>
11.
<th>First Name</th>
12.
<th>Last Name</th>
13.
<th>Username</th>
14.
</tr>
15.
</thead>
16.
<tbody>
17.
<tr>
18.
<th scope=
"row"
>1</th>
19.
<td>Mark</td>
20.
<td>Otto</td>
21.
<td>@mdo</td>
22.
</tr>
23.
<tr>
24.
<th scope=
"row"
>2</th>
25.
<td>Jacob</td>
26.
<td>Thornton</td>
27.
<td>@fat</td>
28.
</tr>
29.
</tbody>
30.
</table>
31.
</div>
32.
<div
class
=
"col-md-6"
>
33.
<table
class
=
"table"
>
34.
<thead>
35.
<tr>
36.
<th>#</th>
37.
<th>First Name</th>
38.
<th>Last Name</th>
39.
<th>Username</th>
40.
</tr>
41.
</thead>
42.
<tbody>
43.
<tr>
44.
<th scope=
"row"
>1</th>
45.
<td>Mark</td>
46.
<td>Otto</td>
47.
<td>@mdo</td>
48.
</tr>
49.
<tr>
50.
<th scope=
"row"
>2</th>
51.
<td>Jacob</td>
52.
<td>Thornton</td>
53.
<td>@fat</td>
54.
</tr>
55.
</tbody>
56.
</table>
57.
</div>
58.
</div>
59.
</div>