menu delle sezioni:
codice:
<html>
<body>
<table>
<tr>
<td><a href="http://www.abc.com/start2.html" target=banner_dx><font face="arial" size="2" color="blue">HOME</font> </td>
<td> </td> <td> </td>
<td><a href="http://www.abc.com/js.html" target=colo1><font face="arial" size="2" color="blue">JAVASCRIPT</font> </td>
<td> </td> <td> </td>
<td><a href="http://www.abc.com/contatti.html" target=banner_dx><font face="century" size="2" color="blue">CONTATTI</font> </td>
<td> </td> <td> </td>
<td><font face="arial" size="1" color="dark">CHIUDI</font></td>
</tr>
</table>
</body>
</html>
index.html
codice:
<html>
<head>
<title>Accedi al sito...</title>
<script language="javaScript">
function accessoSito()
{
window.open('http://www.abc.com/start.html', 'Finestra', 'menubar=no,resizable=yes, scrollbars=yes, width=850, height=550');
}
</script>
</head>
<body bgcolor="HONEYDEW" >
Accedi al sito!
<input type="button" value="Accedi al sito!!" onClick="accessoSito()">
</body>
</html>