HTML <link> href 속성

❮ HTML <링크> 태그

예시

외부 스타일시트에 대한 링크:

<link rel="stylesheet" href="styles.css">

정의 및 사용

href속성은 외부 리소스(대부분 스타일 시트 파일)의 위치(URL)를 지정합니다 .


브라우저 지원

Attribute
href Yes Yes Yes Yes Yes

통사론

<link href="URL">

속성 값

Value Description
URL The URL of the linked resource/document.

Possible values:

  • An absolute URL - points to another web site (like href="http://www.example.com/theme.css")
  • A relative URL - points to a file within a web site (like href="/themes/theme.css")

❮ HTML <링크> 태그