Chrome New Tab - Original
by MythOfEchelon
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-…
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<div id="frame"> <!--This will be the frame. This is to keep the page centered-->
<div id="backing"> <!-- This part is going to be the background color. For some reason, it didn't work either.-->
<div id="thumbnails"> <!-- This is the section holding the links collectively.-->
<div class="img">
<!--Link goes here--> <img src="Thumbnails/Baseball.JPG" width="200" height="160" class="img"/>
Baseball
</div>
<div class="img">
<!--Link goes here--> <img src="Thumbnails/Volleyball.JPG" width="200" height="160" class="img"/>
Volleyball
</div>
<div class="img">
<!--Link goes here--> <img src="Thumbnails/Basketball.JPG" width="200" height="160" class="img"/>
Basketball
</div>
<div class="img">
<!--Link goes here--> <img src="Thumbnails/Cheerleading.JPG" width="200" height="160" class="img"/>
Cheerleading
</div>
<div class="img">
<!--Link goes here--> <img src="Thumbnails/Track.JPG" width="200" height="160" class="img"/>
Track
</div>
<div class="img">
<!--Link goes here--> <img src="Thumbnails/Football.JPG" width="200" height="160" class="img"/>
Football
</div>
</div>
</div>
</div>
</body>
</html>