THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <base> href Attribute

HTML base Tag Reference HTML <base> tag

Example

Specify a base URL for all relative URLs on a page:

<head>
<base href="http://www.w3schools.com/images/">
</head>
Try it yourself »

Definition and Usage

The href attribute specifies the base URL for all relative URLs on a page.


Browser Support

Attribute
href Yes Yes Yes Yes Yes

Syntax

<base href="URL">

Attribute Values

Value Description
URL An absolute URL that acts as the base URL (like "http://www.example.com/")

HTML base Tag Reference HTML <base> tag