why is a link a 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 in html
<a href="https://example.com">Link text goes here</a>