Jio Coin to INR Converter
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
input, button {
margin: 10px;
padding: 10px;
font-size: 16px;
}
button {
background: #007bff;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background: #0056b3;
}
function convertToINR() {
let jioCoin = document.getElementById("jioCoin").value;
let pricePerCoin = 45;
let totalINR = jioCoin * pricePerCoin;
document.getElementById("result").innerText = `Total INR: ₹${totalINR}`;
}
Comments
Post a Comment