Hypertext Markup Language (HTML) Fundamentals: How to Master HTML with Ease by Bright Steven

Hypertext Markup Language (HTML) Fundamentals: How to Master HTML with Ease by Bright Steven

Author:Bright, Steven [Bright, Steven]
Language: eng
Format: azw3
Published: 2018-01-01T16:00:00+00:00


Example

<a href="mailto:[email protected]">xyzstevenbright.com email</a>

Bookmark or (Jump to) Link

This is use to give a website user or visitor a quick navigation option to a particular section of a web page. It enables the user to jump to the specific desired section of the page.

Example

You first create a bookmark with the required id attribute. Note that it is important for the id attribute to be descriptive. Let create an id attribute that will enable a user to Jump from the top of a web page called “HTML” to a section within the page called “Links”. So, you create the id attribute for the HTML LINKS section heading using the code below.

<h3 id="Links">HTML LINKS</h3>

You can now place the jump to link below at the top of the HTML web page in your website just after the opening body tag or anywhere within the page.

<a href="#Links">Jump to HTML LINKS</a>

When a user clicks on the above jump to link, he will be taken to the point of the web page where bookmark has been defined that is the heading of the “HTML Links” section. Note that the name of the bookmark “Link” is referred to in the “Jump to link” by placing the symbol # before the bookmark name i.e. #Links.



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.