PPPP
PPPP
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Escape Room Game</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #333;
color: white;
text-align: center;
padding: 50px;
}
.room {
display: none;
}
.room.active {
display: block;
}
input {
padding: 10px;
margin: 10px;
}
button {
padding: 10px 20px;
background-color: #555;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #777;
}
</style>
<script>
function showRoom(roomNumber) {
// Hide all rooms
var rooms = document.querySelectorAll('.room');
rooms.forEach(function(room) {
room.classList.remove('active');
});
// Show the current room
document.getElementById('room' + roomNumber).classList.add('active');
}
</body>
</html>