โ Back to HTML DOM
Question 130
Add Alt Text to an Image
Add Alt Text to an Image
Select the image with id="logo" and set itsaltattribute to "Company logo". Platform-Provided HTML (READ-ONLY): <img id="logo" src="logo.png"> Steps: 1. Select the image withdocument.getElementById(). 2. Set itsaltproperty to "Company logo".
Expected Output:
<img id="logo" src="logo.png" alt="Company logo">
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.