<head>
<title> 탭 상단 이름 </title>
</head>
<a href="" target="_blank"> 링크 이름쓰기 </a>
<a href="./contact.html">Contact</a>
<a href="./index.html">Brown Bear</a>
<a href="./index.html"><img src ="" target="_blank"/></a>
1) 같은 페이지 내에서 링크를 걸기 위해선, target에게 id를 부여해야한다.
<p id="top">This is the top of the page!</p>
<h1 id="bottom">This is the bottom! </h1>
2) target link는 #와 id로 연결된다.
<ol>
<li><a href="#top">Top</a></li>
<li><a href="#bottom">Bottom</a></li>
</ol>