HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <title>HTML base Tag - Wikimass</title> <base href = "https://wikimass.com/" target="_blank"> </head> <body> <a href="/css">Learn CSS</a><br> <a href="/js">Learn Javascript</a><br> <a href="/jquery">Learn Jquery</a><br> <p><strong>Note:</strong> When target attribute is not defined in anchor tag then the default behavior is <b>_self</b>., but we specified it in base tag as <b>_blank</b> So the link will open the new page in new window.</p> </body> </html>
OUTPUT
×

Save as Private