HTML의 기본 태그는 HTML 문서의 기본 URL을 설정하는 데 사용됩니다. 예를 들어 /html, /java, /jquery 등과 같은 모든 상대 URL에 대한 기본 URL은 https://example.com/tutorials이며 결국 -
https://example.com/tutorials/html https://example.com/tutorials/java https://example.com/tutorials/jquery
참고 :
다음은 속성입니다 -
- 참조 :페이지의 모든 상대 URL에 대한 기본 URL을 설정합니다.
- 타겟: 모든 하이퍼링크 및 양식의 기본 대상입니다. 값은 _blank, _parent, _self, _top 및 framename일 수 있습니다.
이제
예시
<!DOCTYPE html> <html> <head> <base href="https://www.example.com/tutorials/"> </head> <body> <h2>Tutorials List</h2> <p><a href="java.html">Java Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/java.html)</p> <p><a href="jquery.html">jQuery Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/jquery.html)</p> <p><a href="blockchain.html">Blockchain Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/blockchain.html)</p> <p><a href="python.html">Python Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/python.html)</p> </body> </html>
출력