title 속성

Tags:

Link titles
The title attribute may be set for both A and LINK to add information about the nature of a link. This information may be spoken by a user agent, rendered as a tool tip, cause a change in cursor image, etc.

Thus, we may augment a previous example by supplying a title for each link:

<BODY>
…some text…
<P>You’ll find a lot more in <A href=”chapter2.html”
title=”Go to chapter two”>chapter two</A>.
<A href=”./chapter2.html”
title=”Get chapter two.”>chapter two</A>.
See also this <A href=”../images/forest.gif”
title=”GIF image of enchanted forest”>map of
the enchanted forest.</A>
</BODY>

원본문서: http://www.w3.org/TR/html4/struct/links.html

—–

img 태그의 alt 속성과 같은 역할을 합니다. 하이퍼 링크에 대한 설명을 툴팁 처럼 보이게 하는 역할.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *