Wikipad – Unofficial Coding Documentation

Links

Creates a hyperlink to a URL address. URL addresses include other websites, email addresses, files or even locations within the same webpage.

Contents

  1. Attributes

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 id attribute in HTML5. Note that id cannot be used on WackyWriters.

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 with title="Tooltip!":
Tooltip on hover!
<a title="Tooltip!">Tooltip on hover!</a>

How it should appear:

Screenshot of a link with text "Tooltip on hover!" displaying the tooltip "Tooltip!".

Back to HTML ReferenceSpot something we didn't? Let us know!