how to create external link in html code example
Example 1: how to make a link in html
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<a href="link">link name</a>
</body>
</html>
Example 2: link to external site html
<a href="https://www.example.com">This is a link</a>