Cannot find the original post, but here's the corrected code below
Add <title>for page</title>, avoid <TABLE> layouts. Remember an HTML <tag> is enclosed in lesser than
< and greater than
>
brackets. Most <tags> come in opening <a href="___.com"> and closing </a> tags that define content inbetween. Exceptions, called "empty" tags, such as <BR> line break, <HR> horizontal rule, <IMG> image, etc. If you are using XHTML you follow the XML "self-closing" rule and the single tag with a space slash --such as <img src="_____.jpg" />.
You did not complete your anchor tags such as
<a href="http://en.wikipedia.org/wiki/The_Elder_Scrolls_V:_Skyrim"
>
<img src="http://cloud-2.steampowered.com/ugc/596991188537176941/589B18A158D522E7608E22228C0D9D2C8E2CEBFD/200x200.resizedimage"> </a>
Do you have permission to use those images to which you have universal links?
Code:
<!DOCTYPE html>
<html>
<head>
<title>Vudeo Games I Like</title>
</head>
<body>
<table>
<thead>
<tr>
<th colspan="3">Video Games I Like</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>Skyrim</p>
<a href="http://en.wikipedia.org/wiki/The_Elder_Scrolls_V:_Skyrim">
<img src="http://cloud-2.steampowered.com/ugc/596991188537176941/589B18A158D522E7608E22228C0D9D2C8E2CEBFD/200x200.resizedimage"/>
</a>
</td>
<td>
<p>Forza 4</p>
<a href="http://en.wikipedia.org/wiki/Forza_4">
<img src="http://mustangoverload.com/assets/sites/469BE54E-1231-3B12-BD19-11E052C0E888/images/entries/thumbnails/C5A52587-1231-3B12-BD19-388F67CD7AD6.jpg"/>
</a>
</td>
<td>
<p>Castle Crashers</P>
<a href="http://en.wikipedia.org/wiki/Castle_crashers">
<img src="http://th08.deviantart.net/fs70/200H/f/2012/229/d/1/castle_crashers_by_pooterman-d5bgv33.png"/>
</a>
</td>
</tr>
<tr>
<td>
<p>Half-Life 2</P>
<a href="http://en.wikipedia.org/wiki/HL2">
<img src="http://cdn.appstorm.net/mac.appstorm.net/files/2012/09/HalfLife2_logo.png"/>
</a>
</td>
<td>
<p>Halo</p>
<a href="http://en.wikipedia.org/wiki/Halo:_Combat_Evolved">
<img src="http://www.gamasutra.com/db_area/images/news2001/35058/halo.jpg"/>
</a>
</td>
<td>
<p>Super Smash Bros</p>
<a href="http://en.wikipedia.org/wiki/Super_smash_bros">
<img src="http://th05.deviantart.net/fs32/200H/i/2008/227/1/a/Super_Smash_Bros_Melee_by_CCgonzo12.jpg"/>
</a>
</td>
</tr>
<tr>
<td>
<p>Star Fox</p>
<a href="http://en.wikipedia.org/wiki/Star_Fox_(video_game)">
<img src="http://xbox360media.ign.com/xbox360/image/article/112/1122877/gaming-reboots-we-want-to-see-part-1-20100922061559930.jpg"/>
</a>
</td>
<td>
<p>Link to the Past</p>
<a href="http://en.wikipedia.org/wiki/LTTP">
<img src="http://cdn.appstorm.net/mac.appstorm.net/files/2011/06/macroms-5.jpg"/>
</a>
</td>
<td>
<p>Super Metroid</p>
<a href="http://en.wikipedia.org/wiki/Super_metroid">
<img src="http://media1.gameinformer.com/imagefeed/featured/nintendo2012/metroid/other/SuperMetroid200x200.jpg" .
/>
</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>