mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
21 lines
312 B
HTML
21 lines
312 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function cli()
|
||
|
{
|
||
|
document.location.href='http://www.elinks.cz';
|
||
|
}
|
||
|
|
||
|
function loader()
|
||
|
{
|
||
|
document.getElementById('c').addEventListener('click', cli);
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="loader()">
|
||
|
<center>
|
||
|
<input type="button" id="c" value="ELinks homepage">
|
||
|
</center>
|
||
|
</body>
|
||
|
</html>
|