Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Links</title> </head> <body> <h1>HTML Links</h1> <!-- Absolute URL --> <p><a href="https://www.w3schools.com">Visit W3Schools</a></p> <!-- Root-relative --> <p><a href="/about.html">About Us</a></p> <!-- Relative --> <p><a href="contact.html">Contact</a></p> <!-- Link with title tooltip --> <p> <a href="https://developer.mozilla.org" title="MDN Web Docs"> MDN Reference </a> </p> </body> </html>
Result
Open