Calculator Tools Calculator Tools
Create

Bella Vista, Belize Interactive App

Oct 23, 2023

About this app

An interactive web app about Bella Vista, Belize.

Bella Vista, Belize Interactive App 🌴 Bella Vista, Belize Quiz 🌴 Q1: In which country is Bella Vista located? Q2: Which continent is this country on? Q3: What is the climate of Bella Vista? Check Answers Learn More on Wikipedia

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Bella Vista, Belize Interactive App</title>
<meta name="description" content="An interactive web app about Bella Vista, Belize.">
<meta name="keywords" content="Bella Vista, Belize, Interactive, Web App, Quiz">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
var correctAnswers = 0;

function checkAnswer(question, answer) {
var userAnswer = document.getElementById(question).value.toLowerCase();
if (userAnswer === answer) {
document.getElementById(question + "Result").innerHTML = "🎉 Correct!";
correctAnswers++;
} else {
document.getElementById(question + "Result").innerHTML = "❌ Incorrect, the correct answer is: " + answer;
}
}

document.getElementById("checkAnswers").addEventListener("click", function() {
checkAnswer("question1", "belize");
checkAnswer("question2", "central america");
checkAnswer("question3", "tropical");
document.getElementById("score").innerHTML = "You got " + correctAnswers + " out of 3 correct!";
});
});
</script>

<style>
body {
background: linear-gradient(to right, #FFC371, #FF5F6D);
font-family: 'Fredoka One', cursive;
color: #FFF;
}

.container {
margin-top: 50px;
}

.quiz-container {
background: #FFF;
border-radius: 25px;
padding: 20px;
color: #333;
}

.question {
margin-top: 10px;
}

#score {
font-size: 24px;
margin-top: 20px;
}

.wikipedia-link {
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>🌴 Bella Vista, Belize Quiz 🌴</h1>
<div class="quiz-container">
<div class="question">
<label for="question1">Q1: In which country is Bella Vista located?</label><br>
<input type="text" id="question1">
<p id="question1Result"></p>
</div>
<div class="question">
<label for="question2">Q2: Which continent is this country on?</label><br>
<input type="text" id="question2">
<p id="question2Result"></p>
</div>
<div class="question">
<label for="question3">Q3: What is the climate of Bella Vista?</label><br>
<input type="text" id="question3">
<p id="question3Result"></p>
</div>
<button id="checkAnswers" class="btn btn-primary">Check Answers</button>
<p id="score"></p>
</div>
<a href="https://en.wikipedia.org/wiki/Bella_Vista%2C_Belize" class="btn btn-secondary wikipedia-link" target="_blank" rel="nofollow">Learn More on Wikipedia</a>
</div>
</body>
</html>