HTML iFrames + Javascript Random Numbers
<html>
<body>
<script>
window.onload = Steve();
function Pick3Numbers()
{
document.body.style.backgroundColor = 'rgb(' +
Math.floor(Math.random() *256) + ',' +
Math.floor(Math.random() *256) + ',' +
Math.floor(Math.random() *256) + ')' ;
setTimeout ('Pick3Numbers()', 10);
}
</script>
<center>
<iframe width="80%" height="50%" src="http://www.kingscollege.school.nz">
</iframe>
<iframe width="80%" height="50%" src="http://www.blogger.com">
</iframe>
</center>
</body>
</html>
No comments:
Post a Comment