Halli Hallo,
wie schaffe ich es, dass sich die entsprechende Seite (hier: aktuelles.html) im selben (!!!) Fenster öffnet und nicht in einem neuen?
Danke im Vorraus!
<style type="text/css">
td.button
{
color:#bbccdd;
font-family:verdana;
font-size:10px;
text-align:center;
width:150px;
height:16px;
background-color:#203b59;
border-width:1px;
border-style:solid;
border-color:#000000;
cursor:hand;
}
</style>
</head>
<body bgcolor="#112233">
<table>
<tr>
<td class="button"
onmouseover="this.style.backgroundColor='#5e99cb'"
onmouseout="this.style.backgroundColor='#112233'"
onclick="window.open('aktuelles.html','Aktuelles')"> Aktuelles
</td>
</tr>
</table>