CJCoding With Joseph

Add Alt Text to an Image

Select the image with id="logo" and set its alt attribute to "Company logo".

Platform-Provided HTML (READ-ONLY):
<img id="logo" src="logo.png">

Steps:
1. Select the image with document.getElementById().
2. Set its alt property 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.