35. Cooperatesolution Site (0 hits)
Cooperatesolution is a trusted trading broker platform providing real-time forex and crypto market analysis, investment opportunities, and financial education for beginners and professionals.
Cooperatesolution is a trusted trading broker platform providing real-time forex and crypto market analysis, investment opportunities, and financial education for beginners and professionals.
90. Latestsongs Site (0 hits)
Active site to Download your afrobeat, amapiano and hip hop songs stay safe and enjoy
Active site to Download your afrobeat, amapiano and hip hop songs stay safe and enjoy
94. Ogssicffkeee Site (0 hits)
Bible Quiz Game body { font-family: Arial, sans-serif; background: #f0f0f0; text-align: center; padding: 20px; } .quiz-box { background: white; padding: 20px; border-radius: 10px; max-width: 500px; margin: auto; box-shadow: 0 0 10px #ccc; } button { display: block; margin: 10px auto; padding: 10px 20px; background: #4CAF50; color: white; border: none; cursor: pointer; } button:hover { background: #388e3c; } 📖 Bible Quiz const quiz = [ { q: "Who built the ark?", options: ["Abraham", "Noah", "Moses", "David"], answer: "Noah" }, { q: "How many days did God take to create the world?", options: ["5", "6", "7", "8"], answer: "6" }, { q: "What is the first book of the Bible?", options: ["Matthew", "Exodus", "Genesis", "Psalms"], answer: "Genesis" }, { q: "Who was swallowed by a great fish?", options: ["Elijah", "Jonah", "Peter", "Paul"], answer: "Jonah" } ]; let current = 0; function showQuestion() { document.getElementById("result").innerText = ""; const q = quiz[current]; document.getElementById("question").innerText = q.q; const answersDiv = document.getElementById("answers"); answersDiv.innerHTML = ""; q.options.forEach(option => { const btn = document.createElement("button"); btn.innerText = option; btn.onclick = () => checkAnswer(option); answersDiv.appendChild(btn); }); } function checkAnswer(choice) { const correct = quiz[current].answer; const result = document.getElementById("result"); if (choice === correct) { result.innerText = "✅ Correct!"; } else { result.innerText = "❌ Wrong. Correct answer: " + correct; } current++; if (current < quiz.length) { setTimeout(showQuestion, 1500); } else { setTimeout(() => { document.getElementById("question").innerText = "Quiz completed!"; document.getElementById("answers").innerHTML = ""; document.getElementById("result").innerText = ""; }, 1500); } } showQuestion();
Bible Quiz Game body { font-family: Arial, sans-serif; background: #f0f0f0; text-align: center; padding: 20px; } .quiz-box { background: white; padding: 20px; border-radius: 10px; max-width: 500px; margin: auto; box-shadow: 0 0 10px #ccc; } button { display: block; margin: 10px auto; padding: 10px 20px; background: #4CAF50; color: white; border: none; cursor: pointer; } button:hover { background: #388e3c; } 📖 Bible Quiz const quiz = [ { q: "Who built the ark?", options: ["Abraham", "Noah", "Moses", "David"], answer: "Noah" }, { q: "How many days did God take to create the world?", options: ["5", "6", "7", "8"], answer: "6" }, { q: "What is the first book of the Bible?", options: ["Matthew", "Exodus", "Genesis", "Psalms"], answer: "Genesis" }, { q: "Who was swallowed by a great fish?", options: ["Elijah", "Jonah", "Peter", "Paul"], answer: "Jonah" } ]; let current = 0; function showQuestion() { document.getElementById("result").innerText = ""; const q = quiz[current]; document.getElementById("question").innerText = q.q; const answersDiv = document.getElementById("answers"); answersDiv.innerHTML = ""; q.options.forEach(option => { const btn = document.createElement("button"); btn.innerText = option; btn.onclick = () => checkAnswer(option); answersDiv.appendChild(btn); }); } function checkAnswer(choice) { const correct = quiz[current].answer; const result = document.getElementById("result"); if (choice === correct) { result.innerText = "✅ Correct!"; } else { result.innerText = "❌ Wrong. Correct answer: " + correct; } current++; if (current < quiz.length) { setTimeout(showQuestion, 1500); } else { setTimeout(() => { document.getElementById("question").innerText = "Quiz completed!"; document.getElementById("answers").innerHTML = ""; document.getElementById("result").innerText = ""; }, 1500); } } showQuestion();
