HTML Attributes

codinger 19 Apr 2023 | 1:46 pm HTML, HTML Attributes

HTML Attributes

 सभी HTML elements, attributes हो सकते हैं।

 Attributes हमेशा प्रारंभ टैग (start tag) में निर्दिष्ट (specified) होते हैं।

 Attributes, elements के बारे में अतिरिक्त जानकारी प्रदान करते हैं।

 Attributes आमतौर पर name / value pairs में आते हैं जैसे  name="value"

The href Attribute

 <a> टैग हाइपरलिंक को परिभाषित करता है। href विशेषता उस पृष्ठ का URL निर्दिष्ट करती है जिस पर लिंक जाता है-

Example 1.-

 HTML लिंक्स को <a> टैग से शुरू किया जाता है तथा </a> टैग से बंद किया जाता है।

 HTML लिंक्स उसी पेज पर खुलेगा।

 लिंक का (address) पता href विशेषता में निर्दिष्ट है:

<a href= "-------------write your Link / url--------------">------ write your link text----<a/>

<a href="https://www.codinger.in">Visit Codinger</a>

Example 2.-

 लिंक किए गए Document को नई ब्राउज़र विंडो या टैब में खोलने के लिए target="_blank" का उपयोग करते हैं-

<a href= "-------------write your Link / url--------------" target="_blank">------ write your link text----<a/>

<a href="https://www.codinger.in"target="_blank">Visit Codinger</a>

Absolute URLs vs. Relative URLs

 Absolute URLs और. Relative URLs दोनों href attribute के साथ absolute URL (a full web address) का उपयोग कर रहे हैं।

 Relative URLs उस यूआरएल को कहते हैं जिसमें हम href के आगे (https://www" भाग के बिना) अपनी वेबसाइट के फॉल्डर के भीतर या बाहरी फाईल का लिंक देते हैं।

Example 3.-

<h2>Absolute URLs</h2>
<p><a href=
"https://www.codinger.in/">Codinger</a></p>
<p><a href="
https://www.webcodefree.com/">Web Code Free</a></p>

<h2>Relative URLs</h2>
<p><a href="
html_images.png">HTML Images</a></p>
<p><a href="
/css/default.png">CSS Tutorial</a></p>

HTML Links - Use an Image as a Link

https://www.w3schools.com/html/html_attributes.asp

Share

Related Posts



Comments:-


Please login to comment..