HTML में बेस टैग का उपयोग HTML दस्तावेज़ के लिए आधार URL सेट करने के लिए किया जाता है। उदाहरण के लिए, सभी संबंधित URL जैसे /html, /java, /jquery आदि के लिए https://example.com/tutorials के रूप में आधार URL, जो अंततः -
हैंhttps://example.com/tutorials/html https://example.com/tutorials/java https://example.com/tutorials/jquery
नोट :<आधार> टैग का कोई अंत टैग नहीं है यानी इसे
के साथ समाप्त करने की कोई आवश्यकता नहीं हैनिम्नलिखित विशेषताएं हैं -
- href :यह पृष्ठ के सभी सापेक्ष URL के लिए आधार URL सेट करता है
- लक्ष्य: सभी हाइपरलिंक और प्रपत्रों के लिए डिफ़ॉल्ट लक्ष्य। मान _blank, _parent, _self, _top और फ़्रेमनाम हो सकते हैं।
आइए अब <आधार> तत्व-
. को लागू करने के लिए एक उदाहरण देखेंउदाहरण
<!DOCTYPE html> <html> <head> <base href="https://www.example.com/tutorials/"> </head> <body> <h2>Tutorials 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>
आउटपुट