Base Tag in HTML

1
150

The <base> tag in HTML is used to specify the base URL or base address for all the links and resources used in the web page. The <base> tag is usually placed within the <head> section of an HTML document.

Syntax:

<head>
<base href=”base_url”>
</head>

The href attribute is used to specify the base URL or base address for all the links and resources in the web page.

Example: Let’s say that we have a web page with multiple links and resources, and the base URL for this page is https://www.example.com/. We can use the <base> tag to specify the base URL as follows:

<!DOCTYPE html>
<html>
<head>
<base href=”https://www.example.com/”>
<title>My Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
<p>This is a paragraph of text.</p>
<a href=”page2.html”>Link to Page 2</a>
<img src=”images/image1.jpg” alt=”Image 1″>
</body>
</html>

Also Read:  s Tag in HTML

In the above example, the <base> tag is used to specify the base URL as https://www.example.com/. Now, any links or resources that are referenced in the web page will be relative to this base URL. For example, the link to Page 2 is specified as page2.html, which means that it will be resolved as https://www.example.com/page2.html. Similarly, the image source is specified as images/image1.jpg, which means that it will be resolved as https://www.example.com/images/image1.jpg.

In summary, the <base> tag in HTML is used to specify the base URL or base address for all the links and resources in a web page. This can be helpful in situations where you want to ensure that all links and resources are resolved correctly, even if the page is moved to a different location.

Previous articleB Tag in HTML
Next articleBasefont Tag in HTML
Namaskaar, Friends main Kapil byteshastra.com ka Founder hu. Mere kai English blog bhi hai ,par mera motive yahan par easy language mein Technology se related Gyan ko aap tak pahunchane ka hai .taki aap kuch naya shikh sake. meri koshish hai ki bilkul simple tarike se aap ko nyi updates deta rahu taki aap bhi technology ke is yug mein peeche na rahe aur shikte rahe.Mujhse judne ke liye app mujhe Social Media par follow kar sakte hai.

1 COMMENT

Leave a Reply