5. What is a hyperlink?



"A URL, or Uniform Resource Locator is simply a string of text that defines where something is located on the Web"



페이지의 특정 부분으로 이동하는 방법
... a href="contacts.html#Mailing_address">mailing address


같은 페이지의 특정 부분으로 이동
... a href="#Mailing_address">company mailing address


가능하다면 absolute link보다 relative link를 사용해야 한다
- 보기가 더 쉽다
- absolute link를 사용하면 실제 위치를 찾기 위해서 DNS서버부터 새로 시작, 비효율적임


다운로드에 링크하는 경우 download attribute를 활용해서 기본으로 저장되는 파일 이름을 설정해야함
download="firefox-latest-64bit-installer.exe"


이메일 링크 만들기
href="mailto:hello@gmail.com"