강의명 : HTML
- HTML <link> 태그
<link> 태그는 해당 문서와 외부 소스(external resource) 사이의 관계를 정의할 때 사용합니다.
<link> 요소는 빈 태그이며, 속성만을 포함합니다.
또한, 이 요소는 <head> 요소 내부에만 위치할 수 있으며, 그 개수에는 제한이 없습니다.
이러한 <link> 요소는 주로 외부 스타일 시트(external style sheet)를 연결할 때 사용됩니다.
<link> 요소는 빈 태그이며, 속성만을 포함합니다.
또한, 이 요소는 <head> 요소 내부에만 위치할 수 있으며, 그 개수에는 제한이 없습니다.
이러한 <link> 요소는 주로 외부 스타일 시트(external style sheet)를 연결할 때 사용됩니다.
예제
<head>
<link rel="stylesheet" type="text/css" href="/examples/media/expand_style.css">
</head>
<link rel="stylesheet" type="text/css" href="/examples/media/expand_style.css">
</head>
댓글목록
등록된 댓글이 없습니다.