Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 6: Navigating with HTML Links and Structuring Data with Tables!

Instruction

Controlling Link Behavior with Attributes

In addition to basic links, you can modify the behavior of links:

Open Links in New Tabs: To open a link in a new tab, add the target="_blank" attribute:

<a href="https://example.com" target="_blank">Visit Example</a>

Downloadable Links: To force a link to download a file instead of opening it in the browser, add the download attribute:

<a href="fi...