xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to create a link of a page in HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Link of HTML Page</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Example of Hyperlink in HTML</h1> <hr/> <!-- <a> is used for linking html page --> <p>Use HTML anchor (<a>) tag to create HTML Link.<p> <p>Please Click the following link to check the hyperlink.<p> <a href="https://xfactorschool.com/">Visit xFactor School</a> <!-- href attribute is used to define the address of the page to be linked --> </body> </html>