<div class="bmi-card">
<h3>BMI Calculator</h3>
<div class="inputs">
<div class="group">
<label>Height (cm)</label>
<input type="number" id="height" placeholder="180">
</div>
<div class="group">
<label>Weight (kg)</label>
<input type="number" id="weight" placeholder="75">
</div>
</div>
<button onclick="calculateBMI()">Calculate</button>
<div class="result-box" id="resultBox" style="display:none">
<div class="bmi-score" id="bmiScore">22.5</div>
<span class="bmi-status" id="bmiStatus">Normal</span>
</div>
</div>
Back to Snippets
Simple BMI Calculator JS
Check health metrics quickly with this Body Mass Index calculator. Users enter height and weight to get an instant calculation and category rating, which is great for health and fitness websites.
303