반응형
버튼 태그에 링크거는 방법!
input type = "button" / button type = "button"
현재탭 <input type="button" value="버튼" onClick="location.href='입력'">
새탭 <input type="button" value="버튼" onClick="window.open('입력')">
예시 )
외부링크
<input type="button" value="버튼" onClick="location.href='http://www.stackoverflow.com'>
<input type="button" value="버튼" onClick="location.href='index.html'>
내부링크
<input type="button" value="버튼" onClick="location.href='#name1'>
<a id="name1"> 클릭1 </a>
<input type="button" value="버튼" onClick="location.href='#name2'>
<a name="name2"> 클릭2 </a>
반응형
'○ WEB > 19.03 FastCampus_CSS' 카테고리의 다른 글
[드림코딩] CSS 기초 : padding, display, position, flexbox, justify, align (0) | 2021.03.01 |
---|---|
font-family (0) | 2019.07.27 |
z-index (0) | 2019.07.26 |
display / 요소를 숨기는법 / visibility / float / position / offset (0) | 2019.07.25 |
margin&padding / height (0) | 2019.07.24 |