본문 바로가기
정보기술/일반

[정보] HTML - 유용한 태그 <BASE>

by fermi 2004. 3. 4.
http://www.w3.org/TR/html401/struct/links.html#edef-BASE

Path information: the BASE element

This attribute specifies an absolute URI that acts as the base URI for resolving relative URIs.

For example, given the following BASE declaration and A declaration:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
   <TITLE>Our Products</TITLE>
   <BASE href="http://www.aviary.com/products/intro.html">
</HEAD>

<BODY>
   <P>Have you seen our <A href="../cages/birds.gif">Bird Cages</A>?
</BODY>
</HTML>

the relative URI "../cages/birds.gif" would resolve to:

http://www.aviary.com/cages/birds.gif


-------------------------------------------
사용예:

<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v5.0">
<base href="http://myhyun.com/">
</head>