Add hyper link to web page
In this article I am going to show you hou you can add hyper link to web page.
Example:
<a href="" target='_blank">Text here</a>
Inside href you need to pass url,target not mandatory if you want to open a new window then use target.
Complete example:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<a href="http://www.google.com" target="_blank" >Click here</a>
</body>
</html>
Output: