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