Hyperlink example
- how to create website link in html
- how do you create a link from a website
- link to webpage in html
- how to write a link html
Link to another html page in same folder...
W3schools html
HTML Links
In this tutorial you will learn how to create links to other pages in HTML.
Creating Links in HTML
A link or hyperlink is a connection from one web resource to another. Links allow users to move seamlessly from one page to another, on any server anywhere in the world.
A link has two ends, called anchors.
The link starts at the source anchor and points to the destination anchor, which may be any web resource, for example, an image, an audio or video clip, a PDF file, an HTML document or an element within the document itself, and so on.
By default, links will appear as follows in most of the browsers:
- An unvisited link is underlined and blue.
- A visited link is underlined and purple.
- An active link is underlined and red.
However, you can overwrite this using CSS.
Learn more about styling links.
HTML Link Syntax
Links are specified in HTML using the tag.
A link or hyperlink could be a word, group of words, or image.
<a href="url">Link text</a>
Anything between the opening tag and the closing tag becomes the part of the link that the user sees
- how to create a link to a website
- how to make a link for your html website