본문 바로가기

HTML

base 태그

<base>태그는 문서 링크의 기본 루트 폴더를 설정 할 수 있다. head 태그 사이에 있어야 하며 문서에 하나만 존재해야 한다.

 

<!DOCTYPE html>
<html>
	<head>
		<title>base</title>
		<base href="https://pol27.tistory.com/" target="_blank">
	</head>
	<body>
		<a href="35">HTML이란</a>
		<a href="58">a 태그</a>
	</body>
</html>

 

Attribute Value Description
href URL 문서 전체에서 사용될 base URL
target _blank
_parent
_self
_top
문서 전체에서 사용될 열기 옵션

 

 

 

반응형

'HTML' 카테고리의 다른 글

meta 태그  (0) 2020.12.29
link 태그  (0) 2020.12.28
style 태그  (0) 2020.12.26
a 태그  (0) 2020.12.26
title 속성  (0) 2020.12.24