CJCoding With Joseph

Make Text Bold

Select the span with id="label" and make its text bold by setting fontWeight to "bold".

Platform-Provided HTML (READ-ONLY):
<span id="label">Total</span>

Steps:
1. Select the span with document.getElementById().
2. Set element.style.fontWeight to "bold".

Expected Output:

The #label element has style font-weight: bold
Topics:
HTML DOM
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.