lezzo.org/bocciofila/index.html

35 lines
706 B
HTML
Raw Normal View History

2023-07-05 15:55:12 +01:00
<!DOCTYPE html>
<html>
2023-07-06 10:06:46 +01:00
<head>
2023-07-07 10:06:22 +01:00
<meta charset="utf-8">
<title></title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #fff4f6;
}
2023-07-05 15:55:12 +01:00
2023-07-07 10:06:22 +01:00
#startButton {
cursor: pointer;
transform: scale(0.6);
}
</style>
2023-07-06 10:06:46 +01:00
2023-07-07 10:06:22 +01:00
</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>
2023-07-05 15:55:12 +01:00
</html>