I need help making my HTML code easier to do?

Mark G

New member
Hi, I have a website called www.xlivewire.com. its gotten pretty popular, and since then i've been getting a lot of game and video requests making the website a harder upkeep. I know there is a way to make my job simpler so im asking how to do it, can you look at the code below and tell me how to make a CSS page so when I add a game to my site all i have to do is just change the file name and name of the game then ill be done so my job is a lot easier.

<html>
<head>
<title>1 1 Starship</title>

<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>

<body bgcolor="#000000">

<h1 align="center"><font face="Comic Sans MS, cursive" color="#FFFFFF">gwbinz</font></h1>
<div align="center"><br />
<br />

<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="520">

<param name="movie" value="1 Starship.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="7.0.70.0">
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf">
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="1 Starship.swf" width="400" height="520">

<!--<![endif]-->
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="7.0.70.0">
<param name="expressinstall" value="Scripts/expressInstall.swf">
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>

<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
<h2 align="center"><font face="Comic Sans MS" color="#FFFFFF">1 Star Ship</font></h2>
<p align="center"><font color="#FF0000" face="Comic Sans MS, cursive">If this game doesnt work, or you thought of a game we should add to are website.<br /> Let us know by <a href="../Comment.htm" style="color:#FFF">clicking here</a></font></p>

<script type="text/javascript">
<!--
swfobject.registerObject("FlashID");
//-->
</script>

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-12116223-1");
pageTracker._setDomainName("none");
pageTracker._setAllowLinker(true);
pageTracker._trackPageview();
} catch(err) {}
swfobject.registerObject("FlashID");
</script>
</body>
</html>
 
Back
Top