37 lines
911 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Over</title>
<style>
body {
text-align: center;
padding-top: 50px;
background-image: url("asset/pic/alexander/lose.jpg");
background-repeat: no-repeat;
}
.btn {
position: absolute;
display: inline-block;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
top: 350px;
left: 825px;
}
h1 {
position: absolute;
top: 290px;
left: 810px;
}
</style>
</head>
<body>
<h1>Game Over</h1>
<a href="index.html" class="btn">Back to Start</a>
</body>
</html>