I am working through chap 4 and have added a table in the body of the page. In the head of the page, I have a link contained within <a and /a>
I even tried putting the link in <p> </p> tags to completely contain it, but this gave the same results. The table is showing up with the link. Everything in the table is hyperlinked. See code below.
Any ideas would be appreciated.
Code:
<!DOCTYPE html>
<!-- Comment
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>
MSEAcademics.com
</title>
<p>Visit us at <a href="http://www.mseacademics.com/">MSEAcademics.com</a>
<a href="http://www.mseacademics.com/">
<img
src="../MSE_3_Colors.jpg"
title = "MSE Tutoring"
width = "150"
</a>
</p>
</head>
<body>
<table>
<thead>
<tr>
<th>Last Name</th>
<th>First Name</th>
<th>Cell Ph</th>
<th>Home Ph</th>
<th>Email</th>
<th>Company</th>
<th>Last contacted on</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smith</td>
<td>William</td>
<td>555-642-7371</td>
<td></td>
<td>[email protected]</td>
<td>ACME Industries</td>
<td>10-21-2014</td>
</tr>
<tr>
<td>Morris</td>
<td>Bob</td>
<td>555-999-2991</td>
<td></td>
<td>[email protected]</td>
<td>ABC Corp</td>
<td>9-12-2014</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan = "7" >3 contacts displayed </td>
<!-- ^^ this allows it to span across all 7 columns ^^ -->
</tr>
</tfoot>
</tfoot>
</table>
</body>
</html>