How to create a hyperlink in a HTML document

Topics

Introduction

How to create a hyperlink in a HTML document.

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>www.techstudy.org</title>
</head>
<body>
  <p><a href="https://techstudys.com">techstudy.org</a><p>
</body>
</html>

Result

How to create a hyperlink in a HTML document
How to create a hyperlink in a HTML document

Leave a Comment