lezzo.org/bocciofila/index.html
2023-07-07 11:06:22 +02:00

35 lines
706 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #fff4f6;
}
#startButton {
cursor: pointer;
transform: scale(0.6);
}
</style>
</head>
<body background="bgdottedeven.png">
<a href="#" onclick="startGame();">
<img src="landingfull.png" alt="Start Game" id="startButton">
</a>
<script>
function startGame() {
// Redirect to another page
window.location.href = "/home.html";
}
</script>
</body>
</html>