<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>aTag(링크)</title>
</head>
<body>
<a href="#one">one으로 이동</a>
<a href="#two">two로 이동</a>
<a href="#three">three로 이동</a>
<br>
<a href="https://www.google.com">구글로 이동</a> <!--현재 페이지가 구글로 넘어감-->
<br>
<a href="https://www.google.com" target="_blank">구글로 이동</a> <!--새 탭에서 구글로 이동-->
<p id="one" style="margin-top: 1500px;">one</p>
<p id="two" style="margin-top: 1500px;">two</p>
<p id="three" style="margin-top: 1500px;">three</p>
<p style="margin-top:2000px;"></p>
</body>
</html>