<button id="prev" onclick="prevPage()">Previous</button>
<button id="next" onclick="nextPage()">Next</button>
<div id="pageContent">
<h2>Page 1</h2>
<p>You must say exactly what is required — don’t add and don’t reduce. If you add, no one will value you more, and if you reduce, you lose your worth.</p>
</div>
</div>
<script>
const pages = [
{
title: "Page 1",
text: "You must say exactly what is required — don’t add and don’t reduce. If you add, no one will value you more, and if you reduce, you lose your worth."
},
{
title: "Page 2",
text: "Ahmed is an example of positive anti-bullying, because hitting, insulting, and slandering women has nothing to do with real strength."
},
{
title: "Page 3",
text: "Masturbation is poison that brings harm, and you should never do it again."
}
];
let currentPage = 0;
function showPage(index) {
const page = pages[index];
document.getElementById('pageContent').innerHTML =
`<h2>${page.title}</h2><p>${page.text}</p>`;
}
function nextPage() {
if (currentPage < pages.length - 1) {
currentPage++;
showPage(currentPage);
}
}
function prevPage() {
if (currentPage > 0) {
currentPage--;
showPage(currentPage);
}
}
</script>
Dhiab – Personality Building