View Single Post
Old 01-16-2013, 07:29 PM   PM User | #1
Quicksilverpoet
New to the CF scene

 
Join Date: Jan 2013
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Quicksilverpoet is an unknown quantity at this point
Question Images not showing up when I test my code.

I've just started using html and attempted to use what I've learned so far using codecademy.com. When I opened my file in my browser,chrome, none of my images appeared, but when I run it at codecademy's enviorment in browser it appears correctly. Can anyone tell me what I did incorrectly?

Code:
<!DOCTYPE html>
<html>
<head>
</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>

Last edited by VIPStephan; 01-17-2013 at 12:12 AM.. Reason: fixed code BB tag
Quicksilverpoet is offline   Reply With Quote