|
All right! I just started learning XHTML, CSS a couple of months ago and just started learning Javascript a couple of days ago, to tell you how new I am to building web pages. I was wondering if Javascript is what I need to use and what the best way to do this is. What I want to do is have a master page and a slave page. the first page is like this it has a 2 part table on it the first table has links on it the second is an object so that links to another page everytime it reloads It opens up two pages. What I want is for the site to keep the one page always loaded up and when I hit the link it just loads up the object in the second table but I get to always keep the master. This is the code I have so far.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="http://www.indie-games.org/body.css" />
<title>Indie-games: The Best open software and Freeware games around</title>
<meta name="Indie-games" content="Independent Games, Open Source Games, Free Game Engines, Freeware and anything to do with building of games" />
</head>
<body>
<p>
<img src="http://www.indie-games.org/indiegames1.png" alt="indie-games.org Logo" />
</p>
<table>
<tr >
<td class="one">
<h3>Free Ware and open source <br/> Games</h3>
<p>
<a href="http://www.indie-games.org/Independent/AdventureRpg.html">Adventure & Rpg's</a> <br />
<a href="http://www.indie-games.org/Independent/Platform.html">Platform</a> <br />
<a href="http://www.indie-games.org/Independent/PuzzleStratagy.html">Puzzle & Stratagy</a> <br />
<a href="http://www.indie-games.org/Independent/Shooter.html">Shooters</a> <br />
<a href="http://www.indie-games.org/Independent/OtherGames.html">Other Games</a> <br />
<a href="http://www.indie-games.org/Independent/Apps.Html">Applications</a> <br />
<a href="http://www.indie-games.org/Independent">The Forums</a> <br />
</p>
<hr />
<br />
<br />
<br />
<br />
<br />
<br />
</td>
<td class="two">
<object type="text/html" height="100%" width="100%" data="http://www.indie-games.org/Independent/OpenSource2.html">
</object>
</td>
</tr>
</table>
</body>
</html>
thank you for your time
|