: ) Web/웹 스터디
HTML 기초 - 이미지 누르면 링크로 이동하기
miiinn
2023. 11. 8. 13:14
[핵심코드]
<a href="https://google.com">
<img src="burano.jpg">
</a>
*태그 안에 태그를 넣기
[전체코드]
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h3>¡Hola!</h3>
<p>¡Mucho gusto!</p>
<button>버튼</button>
<ol>
<li>항목1</li>
<li>항목2</li>
</ol>
<a href="https://google.com">
<img src="burano.jpg">
</a>
</body>
</html>
[결과 화면]
*이미지 클릭 시 구글로 이동함