Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

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

BMI - Calculator /cody/Kuldeep-Sharmaa/BMI-Calculator/index.html
483 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width
script.js /cody/Kuldeep-Sharmaa/BMI-Calculator/script.js
201 Views
0 Comments
function calculateBMI() {
var weight = parseFloat(document.getElementById("Weight").value);
var height = parseFloat(document
style.css /cody/Kuldeep-Sharmaa/BMI-Calculator/style.css
144 Views
0 Comments
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial;
transition: all 0.3s;
}