Creates a hyperlink to a URL address. URL addresses include other websites, email addresses, files or even locations within the same webpage.
Contents
href=""
The URL is expressed as the value of the
href
attribute.Demo:
Click here!<a href="https://forum.wackywriters.com/t/wikipad-unofficial-coding-documentation/14894/13">Click here!</a>
name=""
This attribute has been depreciated and functionally replaced by the Specifies the name of an anchor point in a document. Users can jump to these anchor points in a document without scrolling.
Demo:
Jump to anchor point:
Click here!<a href="#name_attribute_demo">Click here!</a>
...
...
...
Anchor Point<a name="nameAttributeDemo">Anchor Point</a>
title=""
Adds a text tooltip to display when the mouse is hovering over the element.
Demo:
Hyperlink withtitle="Tooltip!"
:
Tooltip on hover!<a title="Tooltip!">Tooltip on hover!</a>
How it should appear:
id
attribute in HTML5. Note that id
cannot be used on WackyWriters.Back to HTML ReferenceSpot something we didn't? Let us know!