Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632111 Views

Latest files of /cody/Kuldeep-Sharmaa/BMI-Calculator

style.css cody/Kuldeep-Sharmaa/BMI-Calculator/style.css
98 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial;
transition: all 0.3s;
}

BMI - Calculator cody/Kuldeep-Sharmaa/BMI-Calculator/index.html
356 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
script.js cody/Kuldeep-Sharmaa/BMI-Calculator/script.js
166 Views
0 Comments
function calculateBMI() {
var weight = parseFloat(document.getElementById("Weight").value);
var height = parseFloat(document.getElementById("Height").value);

if (isNaN(weight) || isNaN(height) || weight <= 0 || height <= 0) {
document.getElementById("result").innerHTML = "Please enter valid values.";
return;
}