Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/BMI_Calculator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1>BMI Calculator</h1>
<div class="result">
<p>Your BMI is</p>
<div id="result">00.00</div>
<p class="comment">You are healthy</p>
<p class="comment">You are _____</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion projects/BMI_Calculator/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ btn.addEventListener("click", function () {
}
document.querySelector(
".comment"
).innerHTML = `Comment: you are <span id="comment">${status}</span>`;
).innerHTML = `You are <span id="comment">${status}</span>`;
});