HTML links are defined with the <a> tag.

Learn web design with our comprehensive test guide. Improve your skills with flashcards and multiple choice questions. Each question includes hints and explanations. Get ready to ace your exam!

Multiple Choice

HTML links are defined with the <a> tag.

Explanation:
Hyperlinks in HTML are created with the anchor element, the <a> tag. The key idea is that the <a> tag is the element specifically designed to mark a clickable link, and the destination is provided by its href attribute. For example, <a href="https://example.com">Visit Site</a> makes the text “Visit Site” clickable and navigates to that URL when clicked. You can also wrap other content inside the tag, like images or buttons, to make them clickable as links. The other options are different kinds of resources: <link> is used in the head to reference external resources like stylesheets, <script> is for JavaScript code, and href is not a tag at all—it's an attribute used with tags that create links, primarily the <a> tag.

Hyperlinks in HTML are created with the anchor element, the tag. The key idea is that the tag is the element specifically designed to mark a clickable link, and the destination is provided by its href attribute. For example, Visit Site makes the text “Visit Site” clickable and navigates to that URL when clicked. You can also wrap other content inside the tag, like images or buttons, to make them clickable as links.

The other options are different kinds of resources: is used in the head to reference external resources like stylesheets,