From db1f0972f0c54bcffdcfc1377f383536185b1373 Mon Sep 17 00:00:00 2001 From: amrita sinha Date: Tue, 2 Jan 2024 21:52:20 +0530 Subject: [PATCH] basic change --- projects/BMI_Calculator/index.html | 2 +- projects/BMI_Calculator/script.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/BMI_Calculator/index.html b/projects/BMI_Calculator/index.html index 299e100e..1043b317 100644 --- a/projects/BMI_Calculator/index.html +++ b/projects/BMI_Calculator/index.html @@ -24,7 +24,7 @@

BMI Calculator

Your BMI is

00.00
-

You are healthy

+

You are _____

diff --git a/projects/BMI_Calculator/script.js b/projects/BMI_Calculator/script.js index 319edad1..7fb52062 100644 --- a/projects/BMI_Calculator/script.js +++ b/projects/BMI_Calculator/script.js @@ -33,5 +33,5 @@ btn.addEventListener("click", function () { } document.querySelector( ".comment" - ).innerHTML = `Comment: you are ${status}`; + ).innerHTML = `You are ${status}`; }); \ No newline at end of file