Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Help with HTML

  • 11-07-2005 11:22AM
    #1
    Posts: 8,874 ✭✭✭


    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: 8,874 ✭✭✭ [Deleted User]


    That worked great. Thanks a lot.

    And thanks for the advice too. :)


Advertisement