HTML 링크
HTML 링크는 <a>
태그 로 정의됩니다 .
예
<a href="https://www.w3schools.com">This is a link</a>
링크 대상이 href
속성에 지정됩니다 .
속성은 HTML 요소에 대한 추가 정보를 제공하는 데 사용됩니다.
속성에 대한 자세한 내용은 이후 장에서 배우게 될 것입니다.
//입력시
<!DOCTYPE html>
<html>
<body>
<h2>HTML Links</h2>
<p>HTML links are defined with the a tag:</p>
<a href="https://www.w3schools.com">This is a link</a>
</body>
</html>
//출력시
HTML Links
HTML links are defined with the a tag:
This is a link //링크버튼생성 클릭시 넘어감 https://www.w3schools.com