Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Help with HTML

Options
  • 11-07-2005 11:22am
    #1
    Posts: 0


    Well this is the site for starters.


    I'm still in school so my knowledge of HTML is pretty much limited to that. :(


    This is what I have so far:
    
    
    
    
    
    
    
    <HTML><HEAD>
    <META content="MSHTML 6.00.2900.2668" name=GENERATOR></HEAD>
    <BODY background=http://copacetix.com/images/dvd/CoolDVDBackground.jpg> 
    <P align=center>&nbsp<IMG src="http://www.freewebz.com/superxtremewrestling/SXW%20Header.jpg"></P>
    <P align=center>&nbsp</P>
    <P align=center>Super Xtreme Wrestling's new improved web site is coming soon<br><br><br><br>
    <font color="gree" face="arial" size="5">
    Welcome to Super Xtreme Wrestling.</br></br></br>
    </font>
    <font color="blue" face="arial" size="3">
    Everyone is free to join. Don't be afraid to fill out an <a href="http://www.freewebs.com/superxtremewrestling/Application.htm">Application</a> 
    </font>
    
    </P>
    <P align=center>&nbsp</P><FONT size=5></FONT>
    <TABLE cellSpacing=2 cellPadding=2 width="20%" border=1>
    <TR>
    <TD><b>Front Office</b></TD></TR>
    <TR>
    <TD><a href="http://superxtreme.proboards43.com/">Home</a>&nbsp</TD></TR>
    <TR>
    <TD><a href="http://www.freewebs.com/superxtremewrestling/Application.htm">Application</a>&nbsp</TD></TR>
    <TR>
    <TD>Rules&nbsp</TD></TR>
    <TR>
    <TD>Staff&nbsp</TD></TR></TABLE></BODY></HTML>
    
    
    
    

    I want that table in the bottom left to be placed to the left of the writing, just below the image.

    I also would like the page to be divided up (into frames I think they're called) so that the image is in a frame at the top, the table is in a frame to the left (in which more tables will be added later) and the rest is a frame for the words etc. I was thinking something like this:
    <frameset rows="16%,84%">
    <frame src="top.htm" name="top">
    <frameset cols="70%,30%">
    <frame src="left.htm" name="left">
    <frame src="right.htm" name="right">
    </frameset>
    </frameset>
    

    And put the image in instead of top.htm, but I'm not sure.

    Any help would be greatly appreciated. :)


Comments

  • Closed Accounts Posts: 4,655 ✭✭✭Ph3n0m


    First off all unless you have a good reason to use frames - dont use them. For what you want you can do it using tables

    There is your page with a single table. The first row contains a centered version of your logo
    The next row is purely a spacer
    The third row is divided into 3 coloumns
    1st coloumn contains your navitation
    2nd coloumn is a spacer to ensure nothing sites ontop of each other
    3rd coloumn contains general text

    This is just a quick edit - go get some decent links and learn all about CSS and HTML - it will make your life easier




    <HTML><HEAD>
    <META content="MSHTML 6.00.2900.2668" name=GENERATOR></HEAD>
    <BODY background=http://copacetix.com/images/dvd/CoolDVDBackground.jpg> 
    <div align="center">
    <table border="0" cellspacing="0" cellpadding="0" width="640">
    <tr>
    <td colspan="3"><div align="center"><IMG src="http://www.freewebz.com/superxtremewrestling/SXW%20Header.jpg"></div></td></tr>
    <tr><td colspan="3">&nbsp;</td></tr>
    <tr>
    	<!-- left hand coloum containing navigation -->
    	<td valign="top">
    	<b>Front Office</b><br>
    	<a href="http://superxtreme.proboards43.com/">Home</a><br>
    	<a href="http://www.freewebs.com/superxtremewrestling/Application.htm">Application</a><br>
    	Rules<br>
    	Staff</td>
    	
    	
    	<td width="10">&nbsp;</td>
    	
    	<td valign="top"><P align=center>Super Xtreme Wrestling's new improved web site is coming soon<br><br><br><br>
    <font color="gree" face="arial" size="5">
    Welcome to Super Xtreme Wrestling.</br></br></br>
    </font>
    <font color="blue" face="arial" size="3">
    Everyone is free to join. Don't be afraid to fill out an <a href="http://www.freewebs.com/superxtremewrestling/Application.htm">Application</a> 
    </font>
    
    </P>
    </TD></TR></TABLE></div>
    </BODY>
    </HTML>
    


  • Posts: 0 [Deleted User]


    That worked great. Thanks a lot.

    And thanks for the advice too. :)


Advertisement