13 lines
245 B
HTML
13 lines
245 B
HTML
<html>
|
|
<head>
|
|
<title>ARVUTUS</title>
|
|
</head>
|
|
<body>
|
|
<input type="button" onClick="start()" id="start" value="START"></input>
|
|
</body>
|
|
</html>
|
|
<script>
|
|
function start() {
|
|
window.location = "/choice";
|
|
}
|
|
</script> |