<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arkeno</title>
<style>
body { background-color: #f0f0f0; font-family: Arial, sans-serif; color: #333; text-align: center; padding: 20px; }
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }
section { display: none; }
section.active { display: block; }
img { max-width: 100%; height: auto; margin-top: 20px; }
</style>
</head>
<body>
<h1>Welcome to Our Website</h1>
<a href = "Sites.google.com/view/Arkeno-org"> Made using Arkeno </a>
<nav>
<a href="#" onclick="showSection('home')">Home Page</a> |
<a href="#" onclick="showSection('image')">Image</a> |
<a href="#" onclick="showSection('more')">More</a>
</nav>
<section id="home" class="active">
<h2>Home Page</h2>
<p>Write What you want to display<br>After the <BR> Write the Second Line</p>
</section>
<section id="image">
<h2>Image</h2>
<img>Change this With a image URL</img>
</section>
<section id="more">
<h2>More</h2>
<p>Write Some more details and add <br> and write after the BR tag if you want to leave a line.</p>
</section>
<script>
function showSection(id) {
const sections = document.querySelectorAll('section');
sections.forEach(section => section.classList.remove('active'));
document.getElementById(id).classList.add('active');
}
</script>
</body>
</html>