HTML में
टैग निम्नलिखित तत्वों के लिए एक कंटेनर के रूप में काम करता है - <शीर्षक>, <शैली>, <आधार>, <लिंक>, <मेटा>, <स्क्रिप्ट>, <नोस्क्रिप्ट>।HTML5 में, आप
तत्व को शामिल किए बिना HTML दस्तावेज़ के साथ भी काम कर सकते हैं।<शीर्षक> अंदर
आइए अब
टैग को लागू करने और <शीर्षक> जोड़ने के लिए एक उदाहरण देखें -उदाहरण
<!DOCTYPE html> <html> <head> <title>Document Title</title> </head> <body> <h2>Demo Heading</h2> <p>This is demo text.</p> <p>This is demo text.</p> <p>This is demo text.</p> <p>This is demo text.</p> </body> </html>
यह हमारे द्वारा
तत्व - . के अंतर्गत जोड़े गए दस्तावेज़ के शीर्षक को प्रदर्शित करते हुए निम्नलिखित आउटपुट देगा
<आधार> अंदर
HTML में बेस टैग का उपयोग HTML दस्तावेज़ के लिए आधार URL सेट करने के लिए किया जाता है।
<आधार> तत्व के लिए एक कंटेनर के रूप में भी काम करता है। उदाहरण के लिए, आधार URL https −//example.com/tutorials . के रूप में सभी संबंधित URL जैसे /html, /java, /jquery . के लिए आदि, जो अंततः हैं -https −//example.com/tutorials/html https −//example.com/tutorials/java https −//example.com/tutorials/jquery
नोट − <आधार> टैग का कोई अंत टैग नहीं है यानी इसे
के साथ समाप्त करने की कोई आवश्यकता नहीं हैनिम्नलिखित विशेषताएं हैं -
- href − यह पेज के सभी संबंधित यूआरएल के लिए आधार यूआरएल सेट करता है
- लक्ष्य - सभी हाइपरलिंक और प्रपत्रों के लिए डिफ़ॉल्ट लक्ष्य। मान _blank, _parent, _self, _top और फ़्रेमनाम हो सकते हैं।
आइए अब <आधार> तत्व -
. को लागू करने के लिए एक उदाहरण देखेंउदाहरण
<!DOCTYPE html> <html> <head> <base href="https −//www.example.com/tutorials/"> </head> <body> <h2>Tutotials List</h2> <p><a href="java.html">Java Tutorial</a></p><p>(This will act as https −//www.example.com/tutorials/java.html)</p> <p><a href="jquery.html">jQuery Tutorial</a></p><p>(This will act as https −//www.example.com/tutorials/jquery.html)</p> <p><a href="blockchain.html">Blockchain Tutorial</a></p><p>(This will act as https −//www.example.com/tutorials/blockchain.html)</p> <p><a href="python.html">Python Tutorial</a></p><p>(This will act as https −//www.example.com/tutorials/python.html)</p> </body> </html>
आउटपुट