Mission 3: Access Command Logs
The main diagnostics panel needs a direct link to the command logs for cross-referencing system events. The log server is located at a secure external address.
00:00
Mission Objective
Create an anchor tag with the text 'View Command Logs' that links to 'http://novaedge.space/logs.html'.
Step 1 / 1
System Briefing: Creating Navigational Links
Interfaces are interconnected. The anchor tag, <a>
, creates these connections, allowing navigation to other documents, data streams, or external system consoles.
Link Component Anatomy
<a>...</a>
: The anchor element. The content between the tags becomes the interactive, clickable link.href
(Hypertext Reference): This attribute is mandatory. It defines the destination address (URL) of the link. Without it, the link is a mere placeholder.
Example: <a href="https://example.com">Visit Example</a>