Monday, September 8, 2014

Html Link

Link is used when we want to refer to other urls or other web sites or other pages. And if we want to give download links, we use link.

The format of link in html is < a href ="  "></a>

The following is sample of link in html.

<html>
<head>
<title> T N W</title>
</head>
<body>
<p>
If you want to go Google, Please Click <a href="https://www.google.com"> Here </a>
</p>
</body>
</html>

No comments:

Post a Comment