a 태그
이동가능
<a href = "02_list.html">02_list.html</a>
<a href = "../media/01_img.html">../media/01_img.html</a>
<a href = "https://comic.naver.com/webtoon/detail?titleId=758037&no=87&weekday=mon">네이버웹툰</a>
<a href = "02_list.html">02_list.html</a>
<a href = "02_list.html" target = "_blank">blank</a> - 새로운창에서
<a href = "02_list.html" target = "__self">_self</a> - 현재창에
<a href="tel:010-1234-5678">전화</a>
<a href="mailto:ohjs0000@naver.com">메일</a>
태크 스타일 전체 적용
<head>
<meta charset="UTF-8">
<title>03_a</title>
<style>
a{
text-decoration: none;
}
</style>
a:hover { // 마우스 올렸을 시
color: purple;
}
</head>
<a name ="mm1">mm1</a> // 위치지정
<a href ="#mm1">mm1</a> // 위치로 이동
// 다른페이지에서 이동시
<a href ="03_a.html#mm1">mm1</a>