Table Rows

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TH Basic HTML</title>
<link href="mystyle2.css" rel="stylesheet" type="text/css">
</head>
<body>
<table>   
<tr>  
<th>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>


Results

                 
CompanyPlatoonSection
B Troop Tank Platoon1st
C TroopWeapon's Platoon2nd