>>641052If you right click the link and inspect it, you will see in the HTML it's an <a>
element.
The Youtube link is assigned to the href
attribute inside the opening <a>
tag.
Between the opening and closing <a>
tags, you will see the
content of that
element.
When browsers render HTML, they typically turn the
content of the <a> element into a clickable blue hyperlink, that sends you to the value of the href
attribute in the opening
tag.