HTML Tutorial
HTML XHTML
HTML Media
HTML Advanced
Here's a tutorial on HTML references:
HTML (Hypertext Markup Language) references are used to link to other parts of the same web page or to other web pages on the internet. References allow users to navigate between different sections of a web page or to visit other pages that are related to the content they are currently viewing.
id
attribute to give an element a unique identifier, and then use the href
attribute to link to that identifier with a pound sign (#) followed by the identifier.Here's an example of how to create an internal reference in HTML:
<h2 id="section1">Section 1</h2> <p>This is the content of section 1.</p> <h2 id="section2">Section 2</h2> <p>This is the content of section 2.</p> <a href="#section1">Jump to Section 1</a> <a href="#section2">Jump to Section 2</a>
In this example, the <h2>
elements have id
attributes that give them unique identifiers, and the <a>
elements use the href
attribute to link to those identifiers. When the user clicks on one of the links, they will be taken to the corresponding section of the web page.
href
attribute to specify the URL of the web page that you want to link to.Here's an example of how to create an external reference in HTML:
<a href="https://example.com/">Visit Example.com</a>
In this example, the href
attribute is used to specify the URL of the website Example.com. When the user clicks on the link, they will be taken to that website.
href
attribute as you would for external references, but you would specify the URL of the resource instead.Here's an example of how to link to an image in HTML:
<a href="image.jpg"><img src="image.jpg" alt="A beautiful landscape"></a>
In this example, the <a>
element is used to create a link to the image file called "image.jpg", and the <img>
element is used to display the image. The alt
attribute is used to provide alternative text for the image, and when the user clicks on the image, they will be taken to the URL specified in the href
attribute.
By using HTML references, you can create a web of interconnected pages and resources that allow users to easily navigate and explore your website and the internet as a whole.