<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Table Headers Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
<table style="width:100%">
<tr>
<th style="width:65%">Company</th>
<th>Platoon</th>
<th>Section</th>
</tr>
<tr>
<td>B Troop </td>
<td>Tank Platoon</td>
<td>1st</td>
</tr>
<tr>
<td>C Troop</td>
<td>Weapon's Platoon</td>
<td>2nd </td>
</tr>
</table>
</body>
</html>
| Company | Platoon | Section |
|---|---|---|
| B Troop | Tank Platoon | 1st |
| C Troop | Weapon's Platoon | 2nd |