HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress
HTML Tutorials

Overview

The HTML hyperlink uses an a tag to create a link to another document, image, video, or to a section of the current document. It contains the (href) attribute which is the URL of the destination page, image, or  video.

HTML links can have absolute URLs (complete URLs that begin with HTTP or HTTPS) or can use relative URLS.

Absolute URL:

				
					<a href="https://www.1smartchicken.com/blog/index.html">Home Page</a>
				
			

However, if the document we are linking to lives within a directory called /blog we don’t need to write the entire address beginning with HTTP/HTTPS. We can simply refer to that directory and then the document we are linking to.

Relative URL:

				
					<a href="/blog/index.html">Home Page</a>
				
			
				
					<!-- moves up one directory and then down to the targeted doc -->
<a href="../blog/index.html">Home Page</a>

<!-- moves up two directories and then down to the targeted doc -->
<a href="../../blog/index.html">Home Page</a>
				
			

The a tag can also be used inside another tag like a paragraph p or heading h1. Only the text inside the two a tags will be the link.

				
					<p>Please visit our <a href="https://www.1smartchicken.com">Home Page</a>.</p>
				
			

The a tag can also wrap around another element or even multiple elements to make the entire section a link.

				
					<a href="https://www.1smartchicken.com">
    <h2>Home Page</h2>
    <p>Please visit us and say hello.</p>
</a>
				
			

Attributes

The following attributes can be using within in the a tag.

AttributeValueDescription
downloadfilenameSpecifies that the target will be downloaded when a user clicks on the hyperlink
hrefURLSpecifies the URL of the page that the link goes to
hreflanglanguage_codeSpecifies the language of the linked document
mediamedia_querySpecifies for what media/device the linked document is optimized
pinglist_of_URLsSpecifies a space-separated list of URLs to which, when the link is followed, post requests with the body ping will be sent by the browser; typically used for tracking
referrerpolicyno-referrer
no-referrer-when-downgrade
origin
origin-when-cross-origin
same-origin
strict-origin-when-cross-origin
unsafe-url
Specifies which referrer information to send with the link
relalternate
author
bookmark
external
help
license
next
nofollow
noreferrer
noopener
prev
search
tag
Specifies the relationship between the current document and the linked document
target_blank
_parent
_self
_top
Specifies where to open the linked document
typemedia_typeSpecifies the media type of the linked document

Target Attribute

There are several target attributes that can be used inside an a tag. Fore example, the following will load the linked document in a new tab or window (depending on how your browser is setup).

				
					<a href="https://www.1smartchicken.com" target="_blank">Home Page</a>
				
			

The target attribute can have one of the following values:

TargetDescription
_selfOpens in the same tab/window (default)
_blankOpens in a new tab/window
_parentOpens in the parent frame if using frames
_topOpens in the full body of the current tab/window which is helpful when using frames

Title Attribute

Another attribute often used is the title attribute which provides the user a “hint” at what the link does. When they hover over it, a tooltip will show (small popup) that provides the link title.

				
					<a href="https://www.1smartchicken.com" title="Link to Home page" target="_blank">Home Page</a>
				
			

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

HTML
CSS
JavaScript
jQuery
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.