XHTML and CSS Tutorial - 12 - Table Headers and Movie Stars!


<!doctype html>
<html>
<head>
</head>
<body>

<table border = “1”>
        <tr> 
<th> </th>
<th> </th>
<th> </th>
</tr>
<tr>
<td>Natalie Portman</td>
<td>Garden State</td>
<td>thileban</td>
</tr>
<tr>
<td>Rachael McAdams</td>
<td>Mean Girls</td>
<td>thileban</td>
</tr>
</table>
</body> 
</html>



<!doctype html>
<html>
<head>
</head>
<body>

<table border = “1”>
        <tr> 
<th> Name </th>
<th> Movie </th>
<th> Who they love</th>
</tr>
<tr>
<td>Natalie Portman</td>
<td>Garden State</td>
<td>thileban</td>
</tr>
<tr>
<td>Rachael McAdams</td>
<td>Mean Girls</td>
<td>thileban</td>
</tr>
</table>
</body> 
</html>

Comments