The table in my HTML code is not showing up in internet browser. what have i done wrong?

  • Thread starter Thread starter tiger_4495
  • Start date Start date
T

tiger_4495

Guest
The code shows up until where it says "Travel" and then "5 travel top spots"
Here is the code:

<html>
<head>
<title> Sarah's webpage </title>
</head>

<body bgcolor="brown" text="white">

<h1> Travel </h1>
5 Travel top spots!

<h2><table border="1">
<tr>
<th>Heading</th>
<th>Another heading</th>
</tr>
<tr>
<td> Paris, France </td>
<td><img src="eiffel tower edditted"></td>
</tr>
<tr>
<td> Madrid, Spain </td>
<td><img src="URL"></td>
</tr>
<tr>
<td> Melbourne, Australia </td>
<td><img src="URL"></td>
</tr>
<tr>
<td> New York City, New York </td>
<td><img src="NYC editted"></td>
</tr>
<tr>
<td> Washington, D.C. </td>
<td><img src="white house editted"></td>
</tr>
</table></h2>


</body>
</html>

please help me!!!
 
Back
Top