<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roblox Pages</title>
<style>
  body { font-family: Arial, sans-serif; }
  .content { padding: 20px; }
  .image { max-width: 100%; height: auto; }
  .button { padding: 10px 20px; background-color: #007bff; color: white; border: none; cursor: pointer; }
</style>
</head>
<body>
<div class="content" id="page1">
  <h1>Welcome to Roblox!</h1>
  <p>Roblox is an online gaming platform and game creation system that allows users to design, share, and play games created by other users.</p>
  <button class="button" onclick="nextPage(2)">Next</button>
</div>

<div class="content" id="page2" style="display: none;">
  <h1>Getting Started</h1>
  <p>To get started, create a Roblox account, customize your avatar, and explore the wide variety of games available on the platform.</p>
  <button class="button" onclick="nextPage(3)">Next</button>
</div>

<div class="content" id="page3" style="display: none;">
  <h1>Creating Games</h1>
  <p>If you're interested in game development, Roblox provides tools that allow you to create your own games using the Roblox Studio.</p>
  <button class="button" onclick="nextPage(4)">Next</button>
</div>

<script>
let currentPage = 1;

function nextPage(pageNumber) {
  document.getElementById(`page${currentPage}`).style.display = 'none';
  document.getElementById(`page${pageNumber}`).style.display = 'block';
  currentPage = pageNumber;
}
</script>
</body>
</html>