โ Back to HTML DOM
Question 129
Make Text Bold
Make Text Bold
Select the span with id="label" and make its text bold by settingfontWeightto "bold". Platform-Provided HTML (READ-ONLY): <span id="label">Total</span> Steps: 1. Select the span withdocument.getElementById(). 2. Setelement.style.fontWeightto "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.