Senin, 10 September 2012

HTML <base> Tag

Definisi dan Penggunaan

• Tag <base> menentukan URL dasar / target untuk semua URL relatif dalam dokumen.

• Tag <base> masuk ke dalam elemen <head>.

• Contoh Penggunaan :


<!DOCTYPE html>
<html>
<head>
<base href="http://www.w3schools.com/images/" target="_blank" />
</head>

<body>
<img src="stickman.gif" width="24" height="39" /> - Notice that we have only specified a relative address for the image. Since we have specified a base URL in the head section, the browser will look for the image at "http://www.w3schools.com/images/stickman.gif"
<br /><br />
<a href="http://www.w3schools.com">W3Schools</a> - Notice that the link opens in a new window, even if it has no target="_blank" attribute. This is because the target attribute of the base element is set to "_blank".

</body>
</html>

« Mencoba Sendiri »

Tidak ada komentar:

Posting Komentar