Click to See Complete Forum and Search --> : Page Check


Wasiu0607
08-01-2003, 04:03 PM
Hey, could you guys check my codes for me to see if theres any un-nesessary codes for? My website URL is: http://www.animeng.vzz.net/Slam-Dunk.html I really appreciate it!!
These are the codes:

<HTML>
<HEAD>
<TITLE>Anime Slam-Dunk {Rukawa Kaedo #01}</TITLE>
<style type="text/css">
<!--
BODY
{

direction:ltr;
scrollbar-face-color : #797995;
scrollbar-shadow-color : #cecfe4;
scrollbar-highlight-color : #797995;
scrollbar-3dlight-color : #cecfe4;
scrollbar-darkshadow-color : #cecfe4;
scrollbar-track-color : #cecfe4;
scrollbar-arrow-color :#cecfe4;


}
-->
</style>
<style>
a:link { color: #5F5F76; text-decoration: none; cursor: crosshair}
a:visited { color: #5F5F76; text-decoration: none; cursor: crosshair}
a:hover {color: #000000; text-decoration:none; cursor:crosshair; font-weight:bold;}
</HEAD>
</style>
<NOBANNER></head>

<BODY TEXT="#5F5F76" BGPROPERTIES="fixed" BGCOLOR="#CECFE4" LEFTMARGIN="0" RIGHTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0">
<TABLE CELLSPACING="0" CELLPADDING="0">
<TR>
<TD COLSPAN="0" ROWSPAN="0"><IMG SRC="images/p1.jpg" WIDTH="28" HEIGHT="990" BORDER="0"></TD>
<TD COLSPAN="0" ROWSPAN="0">

<TABLE CELLSPACING="0" CELLPADDING="0">
<TR>
<TD COLSPAN="0" ROWSPAN="0"><IMG SRC="images/p03.jpg" WIDTH="388" HEIGHT="320" BORDER="0"></TD>
</TR>
<TR>
<TD COLSPAN="0" ROWSPAN="0" WIDTH="388" HEIGHT="670" BACKGROUND="image/p3.jpg"><IFRAME SRC="news.txt" FRAMEBORDER="0" WIDTH="388" HEIGHT="670" NAME="main1"></IFRAME></TD>
</TR>
</TABLE>
</TD>

<TD COLSPAN="0" ROWSPAN="0"><IMG SRC="images/p4.jpg" WIDTH="50" HEIGHT="990" BORDER="0"></TD>
<TD COLSPAN="0" ROWSPAN="0">
<TABLE CELLSPACING="0" CELLPADDING="0">
<TR>
<TD COLSPAN="0" ROWSPAN="0"><IMG SRC="images/p51.jpg" WIDTH="136" HEIGHT="70" BORDER="0"></TD>
</TR>
<TR>
<TD COLSPAN="0" ROWSPAN="0" WIDTH="136" HEIGHT="110" BACKGROUND="images/p52.jpg"></TD>
</TR>
<TR>
<TD COLSPAN="0" ROWSPAN="0" WIDTH="136" HEIGHT="810" BACKGROUND="image/p53.jpg">
<BR>
<FONT FACE="Arial" SIZE="-2">
<DIV style="LEFT: 457px; WIDTH: 100px; POSITION: absolute; TOP: 60px; HEIGHT: 250px">
<MARQUEE scrollAmount=2 direction=up width=119 height=250 onmouseover=this.stop() onmouseout=this.start()>
News
</marquee>
</div>
<DIV style="LEFT: 457px; WIDTH: 100px; POSITION: absolute; TOP: 320px; HEIGHT: 230px">
& <A HREF="main.html" TARGET="main1">Main Page</A><BR>
& <A HREF="series.html" TARGET="main1">Series Info</A><BR>
& <A HREF="story.html" TARGET="main1">Story Info</a><BR>
& <A HREF="episodes.html" TARGET="sub">Episodes List</a><BR>
& <A HREF="result.html" TARGET="main1">Games Result</a><BR>
& <A HREF="kanagawa.html" TARGET="main1">Kanagawa Best Player</a><BR>
& <A HREF="seiyuu.html" TARGET="main1">Voice Actors/Seiyuu</a>

<BR><BR><BR>
</TD>
</TR>
</TABLE>
<TD><IMG SRC="images/p6.jpg" WIDTH="29" HEIGHT="990"></TD>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>

PeOfEo
08-01-2003, 06:00 PM
I looked at it and I have all this extra room on the right side, maybe you should center it.

Wasiu0607
08-01-2003, 11:51 PM
I dont quite get what you mean. If there is any extra unused codes, could you tell me so I can delete them? Thanks!

pyro
08-02-2003, 12:03 AM
You can start by adding a valid doctype to your page. This tells the browsers what version of HTML to expect. A list of doctypes for HTML 4.01 can be found at http://www.webdevfaqs.com/html.php#doctype

Next, you need to specify which charset you are using. This tag should do it for you:

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

After you do that, you are ready to run it through the validator at the W3C (http://validator.w3.org). I took the liberty of setting up the doctype (HTML 4.01 Strict) and charset (iso-8859-1) for your page and ran it through. Here are the results:

http://validator.w3.org/check?uri=http%3A%2F%2Fwww.animeng.vzz.net%2FSlam-Dunk.html&charset=iso-8859-1+%28Western+Europe%29&doctype=HTML+4.01+Strict&verbose=1

Last but not least, you may want to consider that the W3C specifies that tables should not be used purely as a form of layout:

From http://www.w3.org/TR/html4/struct/tables.html#h-11.1

Tables should not be used purely as a means to layout document content as this may present problems when rendering to non-visual media. Additionally, when used with graphics, these tables may force users to scroll horizontally to view a table designed on a system with a larger display. To minimize these problems, authors should use style sheets to control layout rather than tables.

Wasiu0607
08-03-2003, 12:18 AM
Style sheets? Where can I get or learn that? Thanks

PeOfEo
08-03-2003, 01:15 AM
www.w3schools.org http://www.glish.com/css/ would be my choices to learn css

pyro
08-03-2003, 09:47 AM
You'll also want to keep the specs in mind: http://www.w3.org/TR/REC-CSS2/