Calculator Tools Calculator Tools
Create

Number 22 - Fun and Interactive Number Representation App

Mar 30, 2026

About this app

Explore the fascinating aspects of the number 22 through engaging animations, interactive data visualizations, and intriguing facts in this single-page web application.

Number 22 - Fun and Interactive Number Representation App Welcome to the Number 22 App! Loading interesting fact about the number 22... Generate Another Fact!

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>Number 22 - Fun and Interactive Number Representation App</title>
<meta name="description" content="Explore the fascinating aspects of the number 22 through engaging animations, interactive data visualizations, and intriguing facts in this single-page web application.">
<meta name="keywords" content="number 22, interactive app, fun facts, data visualization, educational content">

<!-- Libraries -->
<!-- jQuery (3.6.0) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS (5.3.3) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<!-- Bootstrap JS (5.3.3) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous">
</script>
<!-- Font Awesome (6.6.0) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
function showFacts() {
const facts = [
"22 is the number of the lucky card in Tarot, the Fool.",
"There are 22 letters in the Hebrew alphabet.",
"The 22nd day of the Hebrew month Tishrei is celebrated as Shemini Atzeret.",
"In numerology, 22 is considered a Master Number.",
"22 is among the few numbers in the Fibonacci sequence.",
];
const randomIndex = Math.floor(Math.random() * facts.length);
$("#fact").text(facts[randomIndex]);
}

$("#generate-button").click(function() {
showFacts();
});

// Set the initial fact
showFacts();
});
} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(135deg, #ff4081, #81d4fa);
color: #fff;
font-family: 'Arial', sans-serif;
}
#main-container {
text-align: center;
margin-top: 20vh;
}
#fact {
margin: 20px 0;
font-size: 24px;
border: 1px solid #ffffff;
padding: 20px;
border-radius: 10px;
transition: transform 0.3s, background-color 0.3s;
}
#generate-button {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s;
}
#generate-button:hover {
background-color: #45a049;
}
#fact:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: scale(1.05);
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Welcome to the Number 22 App!</h1>
<div id="fact">Loading interesting fact about the number 22...</div>
<button id="generate-button">Generate Another Fact!</button>
</div>
</body>
</html>