Lottery Odds Calculator
About this app
Calculate your odds of winning the lottery based on 300 million winning combinations.
Lottery Odds Calculator 🎉 Lottery Odds Calculator 🎉 Enter the number of tickets you bought: Calculate Odds
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>Lottery Odds Calculator</title>
<meta name="description" content="Calculate your odds of winning the lottery based on 300 million winning combinations.">
<meta name="keywords" content="lottery, odds, calculator, winning">
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy&display=swap" rel="stylesheet">
<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://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
let totalCombinations = 300000000;
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("calculate").addEventListener("click", function(){
let ticketsBought = document.getElementById("tickets-bought").value;
let odds = (ticketsBought / totalCombinations) * 100;
document.getElementById("odds").innerText = "Your odds of winning are: " + odds.toFixed(10) + "% 🍀";
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #8e2de2, #4a00e0);
color: #fff;
font-family: 'Luckiest Guy', cursive;
}
#main-container {
margin-top: 100px;
text-align: center;
}
#odds {
margin-top: 20px;
font-size: 1.5em;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>🎉 Lottery Odds Calculator 🎉</h1>
<p>Enter the number of tickets you bought:</p>
<input type="number" id="tickets-bought" min="1" max="300000000">
<button id="calculate" class="btn btn-primary">Calculate Odds</button>
<p id="odds"></p>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!