HTML: Anchor Tag

We can create hyperlinks using the anchor tag.

What is a Hyperlink?

A hyperlink is a link between web pages and it is used to connect one web page to another.

Ex:- <a href=”https://www.google.com”>Visit Google </a>

Anchor Tag Attributes

AttributeValueDescription
hrefURL referenceSpecifies the URL as a destination web page or a different section of the web page
downloadfilenameSpecifies that the target will be downloaded when a user clicks on the hyperlink
mediamedia_querySpecifies what media/device the linked document is optimized for
hreflanglanguage_codeSpecifies the language of the linked document
typemedia_typeSpecifies the media type of the linked document

Anchor Tag Attributes

AttributeValueDescription
target_blank _parent _top framename _selfOpens the linked document in a new window or tab Opens the linked document in the parent frame Opens the linked document in the full body of the window Opens the linked document in a named frame Opens the linked document in the same frame as it was clicked (this is the default)

Ex:- <a href=”https://www.google.com”target=”_blank”>Visit Google </a>

Anchor Tag Attributes

href Attribute

Syntax: – <a href=“URL”>

  • An absolute URL – points to another web site. Ex: – href=”http://www.google.com”
  • A relative URL – points to a file within a web site. Ex:- href=“page1.html”
  • Link to an element with a specified id within the page. Ex: –  href=”#bottom”
  • Other protocols. Ex:- https://, ftp://, mailto:, file:, etc..
  • A script. Ex:- href=‘javascript:alert(“Hello”);’

Download Attribute

The download attribute specifies that the target will be downloaded when a user clicks on the hyperlink.

Ex:- <a href=”image/example.jpg”download=”nature”>

Media Attribute

The media attribute specifies what media/device the linked document is optimized for.

This attribute is used to specify that the target URL is designed for special devices (like iPhone and Android etc), speech, or print media.

ValueDescription
widthSpecifies the width of the targeted display area.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (min-width:500px)”
heightSpecifies the height of the targeted display area.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (max-height:700px)”
device-widthSpecifies the width of the target display/paper.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (device-width:500px)”
device-heightSpecifies the height of the target display/paper.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (device-height:500px)”
orientationSpecifies the orientation of the target display/paper.
Possible values: “portrait” or “landscape”
Example: media=”all and (orientation: landscape)”
ValueDescription
aspect-ratioSpecifies the width/height ratio of the targeted display area.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (aspect-ratio:16/9)”
device-aspect-ratioSpecifies the device-width/device-height ratio of the target display/paper.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (aspect-ratio:16/9)”
colorSpecifies the bits per color of the target display.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (color:3)”
color-indexSpecifies the number of colors the target display can handle.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (min-color-index:256)”
monochromeSpecifies the bits per pixel in a monochrome frame buffer.
“min-” and “max-” prefixes can be used.
Example: media=”screen and (monochrome:2)”
ValueDescription
resolutionSpecifies the pixel density (dpi or dpcm) of the target display/paper.
“min-” and “max-” prefixes can be used.
Example: media=”print and (resolution:300dpi)”
scanSpecifies scanning method of a tv display.
Possible values are “progressive” and “interlace”.
Example: media=”tv and (scan:interlace)”
gridSpecifies if the output device is grid or bitmap.
Possible values are “1” for the grid, and “0” otherwise.
Example: media=”handheld and (grid:1)”
ValueDescription
allDefault. Suitable for all devices
auralSpeech synthesizers
brailleBraille feedback devices
handheldHandheld devices (small screen, limited bandwidth)
projectionProjectors
printPrint preview mode/printed pages
screenComputer screens
ttyTeletypes and similar media using a fixed-pitch character grid
tvTelevision type devices (low resolution, limited scroll ability)
  • And
  • Not
  • ,(OR)

Ex:- media=”print and (resolution:300dpi)”>

hreflang Attribute

Type Attribute

http://www.iana.org/assignments/media-types/media-types.xhtml

rel Attribute

ValueDescription
alternateLinks to an alternate version of the document (i.e. print page, translated or mirror)
authorLinks to the author of the document
bookmarkPermanent URL used for bookmarking
helpLinks to a help document
licenseLinks to copyright information for the document
nextThe next document in a selection
nofollowLinks to an unendorsed document, like a paid link.
(“nofollow” is used by Google, to specify that the Google search spider should not follow that link)
noreferrerSpecifies that the browser should not send a HTTP referer header if the user follows the hyperlink
prefetchSpecifies that the target document should be cached
prevThe previous document in a selection
searchLinks to a search tool for the document
tagA tag (keyword) for the current document

Link Color

By default, links will appear as follows in all browsers:

An unvisited link is underlined and blue

A visited link is underlined and purple

An active link is underlined and red

link – specifies the color of the hyperlink that has not been visited or clicked
  before on a webpage

vlink – specifies the color of hyperlink that has been visited before on a web page

alink – specifies the color of currently active links

Tagged : / / / / / / / / / / / / / /