Hey i used to make websites with frames but i wanted to change and use tables as its better for my script.
But i have a question:
I want to use the cell on the right (the one with the iframe right now) to be used as a frame for the links.
Can anyone help me?
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>websites</title>
<script type="text/javascript">
function tick()
{
//create a new date object
var now=new Date();
//get the time
var hh=now.getHours();
var mn=now.getMinutes();
var ss=now.getSeconds();
var ms=now.getMilliseconds();
//make sure each components has two digits:
if(hh<=9)hh="0"+hh;
if(mn<=9)mn="0"+mn;
if(ss<=9)ss="0"+ss;
if(ms<=9)ms="0"+ms;
//put the time on the form:
document.f.clock.value=hh+":"+mn+":"+ss+":"+ms;
//set interval to one second
window.setTimeout("tick()",1);
}
</script>
</head>
<body onload="tick()">
<body bgcolor="#000000"></body>
<body text="#c0c0c0"></body>
<body link="#ffff00"></body>
<table>
<td><img src="logo.gif" width="875" height="150" alt="logo (23K)" /></td>
</table>
<table>
<tr>
<td width="100" height="500">
<img src="micsoccball.jpg" width="65" height="50" alt="micsoccball (1K)" />
<div>
<br>
<a href="content.htm" target=mainframe title="Homepage">Home</a><div>
<br>
<a href="http://www.djbenjib.skyblog.com" target=mainframe title="My webblog">Pictures</a><div>
<br>
<a href="contact.htm" target=mainframe title="A little bit about me">The webmaster</a><div>
<br>
<a href="http://www.benjidela.com/forum" target=mainframe title="The place where you can talk for free...">The forum!</a><div>
<br>
<a href="podcast.htm" target=mainframe title=" Where you can listen to my podcast (music)">Podcast</a><div>
<br>
<a href="websites.htm" target=mainframe title="All the websites I've done">Websites</a><div>
<br>
<a href="http://www.benjidela.com/guestbook" target=mainframe title="Leave a trace of you here">Sign my guestbook!</a><div>
<br>
<a href="friends.htm" target=mainframe titel="Special dedication for my real friends">Friends</a>
<!--here is the form for the clock-->
<form name="f">
<input type="text" name="clock" value="">
</form>
</td>
<td>
<h1><center><b><font size=10>Welcome to my website!</b></center></h1><div>
<h2><b><font color="#ffffff"font size=6>News:</font><b></h2><div>
<iframe src="news.htm" width=600height=400 align=center></iframe>
</td>
</tr>
</body>
</html>
Thanks in advance 
__________________
forum-------> Please login or register to view this content. Registration is FREE, for people who wants to have a good time ;)
website------> Please login or register to view this content. Registration is FREE (might be in construction :D)
Hope you have a great time and that my post is helpfull ;)
|