a tag in html

a tag in html. paired html tag का मतलब हे की इस tag को close करना आवश्यक होता हे। इसलिए a tag को close करना आवश्यक हे। इसे a इसतरह से close किया जाता हे।

syntax of a tag:

<a href =”” > </a>
a tag in html

use of a tag

a tag का use webpage में link देने के लिए होता हे। a tag के जरिये हम Internal link और External link बना सकते हे। आज हम a tag का use example के साथ देखेंगे।



<html>
    <head>
        <title>a tag</title>
    </head>
    <body>
        <ul>
            <li><a href="facebook.com"> facebook </a></li>
            <li><a href="google.com"> google </a></li>
            <li><a href="yahoo.com"> yahoo </a></li>
            <li><a href="gmail.com"> gmail </a></li>
        </ul>
    </body>
</html>
	

output : 

  • facebook
  • google
  • yahoo
  • gmail

new page new window में कैसे open करें ?

new page में open होने का मतलब यह हे की आप जब भी link per click करते हो तब वह link दूसरे नए tab में open होती हे जिससे आप एक साथ दो website को visit कर सकते हो। इसमें आपको a tag में target attribute का इस्तेमाल करना होगा


<html>
    <head>
        <title>a tag in html</title>
    </head>
    <body>
        <ul>
            <li><a href="facebook.com" target="_blank"> facebook </a></li>
            <li><a href="google.com" target="_blank"> google </a></li>
            <li><a href="yahoo.com" target="_blank"> > yahoo </a></li>
            <li><a href="gmail.com" target="_blank"> > gmail </a></li>
        </ul>
    </body>
</html>