홍강zone

[HTML] 링크 거는 방법 <a href="" target="_blank" title=""></a> 본문

HTML

[HTML] 링크 거는 방법 <a href="" target="_blank" title=""></a>

홍강 2023. 3. 23. 00:52

링크 거는 방법

a = anchor

href = HyperText Reference

<a href="https://html.spec.whatwg.org/multipage/" 
target="_blank" title="htm15 specicification">Hypertext Markup Language (HTML)</a>

<a href="링크주소"></a> 는 새 창을 열지않고 기존 창에서 해당 링크로 접속된다.

 

<a href="링크주소" target="_blank"></a> 는 링크를 클릭하면 새 창을 열어 연결된다.

 

<a href="링크주소" target="_blank" title="간단설명할이름"></a>

마우스를 갖다대면 위와같이 설명이 표시된다