--- title: slug: Web/HTML/Element/area tags: - Element - HTML - HTML embedded content - Reference - Web translation_of: Web/HTML/Element/area ---
{{HTMLRef}}

HTML <area> 요소는 이미지의 핫스팟 영역을 정의하고 {{glossary("hyperlink", "하이퍼링크")}}를 추가할 수 있습니다. {{htmlelement("map")}} 요소 안에서만 사용할 수 있습니다.

{{EmbedInteractiveExample("pages/tabbed/area.html", "tabbed-taller")}}
콘텐츠 카테고리 플로우 콘텐츠, 구문 콘텐츠.
가능한 콘텐츠 없음. {{glossary("empty element", "빈 요소")}}입니다.
태그 생략 여는 태그는 존재해야 하며 닫는 태그는 존재해선 안됩니다.
가능한 부모 요소 구문 콘텐츠를 허용하는 모든 요소. 단, 조상 중 {{htmlelement("map")}} 요소가 존재해야 합니다.
암시적 ARIA 역할 {{htmlattrxref("href", "area")}} 특성이 존재하면 {{ariarole("link")}}, 그 외의 경우 대응하는 역할 없음
가능한 ARIA 역할 없음
DOM 인터페이스 {{domxref("HTMLAreaElement")}}

특성

이 요소는 전역 특성을 포함합니다.

{{htmlattrdef("alt")}}
이미지를 출력하지 않는 브라우저에서 대신 표시할 대안 텍스트입니다. 텍스트의 내용은 대안 텍스트 없이 이미지만 표시할 때와 동일한 수준의 선택지를 나타낼 수 있어야 합니다. {{htmlattrxref("href", "area")}} 특성이 존재할 경우 필수 사항입니다.
{{htmlattrdef("coords")}}
핫스팟 영역을 지정하는 일련의 좌표입니다. 값의 수와 의미는 shape 특성의 값에 따라 달라집니다.
값의 단위는 CSS 픽셀입니다.
{{htmlattrdef("download")}}
특성이 존재할 경우, 이 하이퍼링크는 리소스 다운로드 용도로 사용하는 것을 의도했음을 나타냅니다. {{htmlelement("a")}}의 {{htmlattrxref("download", "a")}} 특성 설명에서 전체 설명을 볼 수 있습니다.
{{htmlattrdef("href")}}
<area> 하이퍼링크의 대상입니다. 유효한 URL이야 합니다. 생략할 경우, 이 <area> 요소는 하이퍼링크를 나타내지 않습니다.
{{htmlattrdef("hreflang")}}
연결한 리소스의 언어를 나타냅니다. 가능한 값은 BCP47에 따릅니다. {{htmlattrxref("href", "area")}} 특성이 존재할 때만 사용하세요.
{{htmlattrdef("ping")}}
하이퍼링크를 따라갈 때, 백그라운드에서 브라우저가 {{HTTPMethod("POST")}} 요청을 본문 PING으로 전송할 URL의 목록입니다. 공백으로 구분하며 주로 추적용으로 사용합니다.
{{htmlattrdef("referrerpolicy")}} {{experimental_inline}}
A string indicating which referrer to use when fetching the resource:
{{htmlattrdef("rel")}}
For anchors containing the href attribute, this attribute specifies the relationship of the target object to the link object. The value is a comma-separated list of link types values. The values and their semantics will be registered by some authority that might have meaning to the document author. The default relationship, if no other is given, is void. Use this attribute only if the href attribute is present.
{{htmlattrdef("shape")}}
관련된 핫 스폿의 모양. The specifications for HTML 5 and HTML 4 define the values rect, which defines a rectangular region; circle, which defines a circular region; poly, which defines a polygon; and default, which indicates the entire region beyond any defined shapes. Many browsers, notably Internet Explorer 4 and higher, support circ, polygon, and rectangle as valid values for shape; these values are {{Non-standard_inline}}.
{{htmlattrdef("target")}}
이 속성은 링크된 리소스가 어디에 표시될지 지정합니다. HTML4에서 이것은 프레임의 이름이나 키워드가 될수 있습니다. HTML5에서는, 브라우징 컨텍스트(탭,윈도우,인라인 프레임)의 이름이나 키워드가 될수 있습니다. 다음 키워드들은 특별한 의미를 가지고 있습니다. 이 속성은 href 속성이 존재할떄만 사용합니다.

예제

<map name="primary">
  <area shape="circle" coords="200,250,25" href="another.htm" />
  <area shape="default" nohref />
</map>
<img usemap="#primary" src="http://placehold.it/350x150" alt="350 x 150 pic">

결과

{{EmbedLiveSample('예제', 360, 160)}}

명세

명세 상태 주석
{{SpecName('Referrer Policy', '#referrer-policy-delivery-referrer-attribute', 'referrerpolicy attribute')}} {{Spec2('Referrer Policy')}} Added the referrerpolicy attribute.
{{SpecName('HTML WHATWG', 'the-map-element.html#the-area-element', '<area>')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'embedded-content-0.html#the-area-element', '<area>')}} {{Spec2('HTML5 W3C')}}
{{SpecName('HTML4.01', 'struct/objects.html#h-13.6.1', '<area>')}} {{Spec2('HTML4.01')}}

브라우저 호환성

{{Compat("html.elements.area")}}