L
I
N
K
S
100

A hyperlink is

An HTML element that connects one web page to another page or resource.

100

<a> tag means

Anchor

100

Why are hyperlinks important for browsing the web?

They help users easily move from one page to another and find more information

100

What attribute is used inside the anchor tag to specify the destination URL?

href

100

True or False? You can wrap an image within an anchor element?

True

200

What is the difference between a clickable link and standard text on a webpage?

A clickable link takes you to another page, while standard text does not

200

What is a hyperlink?

A link that connects webpages and allows users to click from one page to another.

200

Text that can be clicked to go to another page

Clickable link

200

Which value for the target attribute opens a linked webpage in a new browser tab or window?

_blank

200

A link that connects webpages

Hyperlink

300

Which HTML tag is used to define a hyperlink?

<a>

300

When creating a link to a bookmark, the # symbol used within the href value is known as ___?

hash

300

What is the standard HTML tag for a link?

The <a> tag

300

What is a "broken link"?

A hyperlink that points to a page or resource that no longer exists.

300

To create an internal link or bookmark, you must use an anchor element with the ___ attribute that points to the bookmark value?

href

400

When the href value uses the # symbol, the browser will look for a location within what document?

the current document

400

Why are hyperlinks useful when browsing the internet?

They make it easy for users to find more information by connecting relevant web pages.

400

What is the general format for an HTML attribute?

name equals value inside quotes

400

What does the href attribute in an HTML hyperlink do?

It tells the browser where the link should take you.

400

When you use a hyperlink on a webpage, what is displayed to the user?

The text inside the tag is displayed as a clickable link.

500

What color are unvisited HTML links by default?

They appear blue and underlined in standard web browsers.

500

What attribute specifies the link's destination?

The href attribute.

500

True or False? When adding an anchor element to a webpage, you cannot link it to a PDF document?

False
500

Can you turn an image into a link?

Yes, by wrapping an <img> tag inside an <a>

500

How do you write a basic HTML link?

<a href="https://example.com">Click Here</a>