Mission 4: Visual Diagnostics
The ship's sensors have detected an anomaly, but the text-based logs are inconclusive. We need a visual.
00:00
Mission Objective
Patch the live feed from the cargo bay camera into this console. Display the image located at `cam_feed.jpg`. Ensure it has the proper alternative text for system redundancy.
Step 1 / 1
System Briefing: Embedding Visuals
A visual confirmation is often necessary for system diagnostics. The <img>
tag is used to embed images directly into the interface. It's an "empty" tag, meaning it does not have a closing tag.
Image Attributes Protocol
src
(Source): Mandatory. This specifies the path or URL to the image file. Without it, the browser has nothing to display.alt
(Alternative Text): Mandatory for accessibility and system robustness. It provides a text description if the image fails to load and for visually impaired users relying on screen readers.
Example: <img src="galaxy_map.jpg" alt="Starmap of the Andromeda sector.">