Added details for the <base> tag (#29064)

This commit is contained in:
Shashank Goyal
2019-01-18 02:44:20 +00:00
committed by Tom
parent 1174bd450c
commit 550316fa4c

View File

@ -3,11 +3,15 @@ title: Base Tag
--- ---
## Base Tag ## Base Tag
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/html/elements/base-tag/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>. `<base>` tag must be inside the `<head>` element and contains a URL which serves as the base URL for all relative URLs in the page. There can be a maximum of one `<base>` tag in a page.
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>. Example usage:
```html
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds --> <head>
<base href="https://www.example.com/path/" target="_blank">
</head>
```
#### More Information: #### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
- <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base">&lt;base&gt;: The Document Base URL element</a>