how to place links in bottom frame?

Discussion in 'HTML & Website Design' started by dustovshio, Feb 26, 2009.

  1. #1
    I want to put my links into a frame so they won't clutter the page. http://www.hostscorpion.com
    can someone explain how to do this in dreamweaver? thanks
     
    dustovshio, Feb 26, 2009 IP
  2. aloksharma

    aloksharma Well-Known Member

    Messages:
    1,058
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    160
    #2
    You can do that using Server Side Includes (SSI) and PHP or Javascript include.

    Here is a example code:

    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title></title>
    <meta name="keywords" content="">
    <meta name="description" content="">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <link rel="shortcut icon" href="favicon.ico">
    <link rel="stylesheet" href="styles.css" type="text/css">
    </head>
    <body> 
    <div align="center"> 
    	<!--#include file="header.ssi" --> 
    	<table width="1000" align="center" border="0" cellspacing="0" cellpadding="0"> 
    		<tr> 
    			<td valign="top" style="text-align: left; width: 225px; padding:5px; "><!--#include file="left.ssi" --></td> 
    			<td valign="top" style="width: 5px;">&nbsp;</td> 
    			<td align="left" valign="top" style="width: 770px;"><div style="height:5px; "><!-- Main Contents Goes Here --></div> 
    			</td>
    		</tr> 
    	</table> 
    	<!--#include file="footer.ssi" --> 
    </div> 
    </body>
    </html>
    
    HTML:
     
    aloksharma, Feb 26, 2009 IP