how to provide a link in html code example
Example 1: html link
<a href="https://www.google.com/">Link to google</a>
Example 2: 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>