35 lines
717 B
HTML
35 lines
717 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 = "/bocciofila/home.html";
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|