네이버로 바로이동
<button type="button" onclick="location.href='http://www.naver.com' ">네이버로 바로이동</button>
네이버 새탭으로 열기
<button type="button" onclick="window.open(http://www.naver.com) ">네이버 새탭으로 열기</button>
<a href='https://www.naver.com' target='_blank'> 나는 하이퍼링크다.</a>
<HEAD>
<TITLE> 링크에 밑줄 없애기 </TITLE>
<style type="text/css">
a:link { color: red; text-decoration: none;}
a:visited { color: black; text-decoration: none;}
a:hover { color: blue; text-decoration: underline;}
</style>
a:active : 링크부분에서 마우스를 누르고 있는 동안의 상태
출처: https://storyhong.tistory.com/82
a {text-decoration: none;}
원래 파란 깃헙 고양이가 하얗게 잘 나옴 해결!