<a href="URL">콘텐츠</a>
<p>사이트 바로가기</p>
<ul>
    <li>
        <a href="https://codingeverybody.kr/">코딩에브리바디</a>
    </li>
    <li>
        <a href="https://www.google.com/"><img src="googlelogo" alt="google"></a>
    </li>
</ul>
브라우저에서 실제 표시된 모습
다음의 용어에 대한 사전에 필요
<a href="mailto:help@example.com">관리자에게 이메일 보내기</a>
브라우저에서 실제 표시된 모습 실제로 클릭하면 이메일 앱이 연동됩니다.
<a href="tel:+821012345678">상담사와 통화하기</a>
브라우저에서 실제 표시된 모습 실제로 클릭하면 전화걸기 앱이 연동됩니다.
기본 형식
국제전화가 아닌 경우
<!-- 휴대폰 -->
<a href="tel:01012345678">상담사와 통화하기</a>
<a href="tel:010-123-45678">상담사와 통화하기</a>
<a href="tel:010 123 45678">상담사와 통화하기</a>

<!-- 유선전화 -->
<a href="tel:0212345678">상담사와 통화하기</a>
<a href="tel:02-1234-5678">상담사와 통화하기</a>
<a href="tel:02 1234 5678">상담사와 통화하기</a>
URL의 프래그먼트(hash URL이라고도 함)
<nav>
    <ul>
        <li><a href="#section-1">섹션 1 바로가기</a></li>
        <li><a href="#section-2">섹션 2 바로가기</a></li>
        <li><a href="#section-3">섹션 3 바로가기</a></li>
    </ul>
</nav>
<section id="section-1">
    <h2>섹션 1</h2>
</section>
<section id="section-2">
    <h2>섹션 2</h2>
</section>
<section id="section-3">
    <h2>섹션 3</h2>
</section>
<a href="https://www.google.com/" target="_blank">구글로 새창뜨기 이동</a>
브라우저에서 실제 표시된 모습
<a href="/files/report.pdf" download>보고서 다운로드</a>
<a href="/files/report.pdf" download="2024_report.pdf">보고서 다운로드</a>
<a href="next-page.html" rel="next">다음 페이지</a>