영상
이미지 파일 다운로드
개념
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--
img(=image) 태그
(1) src(source) : 이미지파일명.확장자
(2) width : 가로 크기
(3) height : 세로 크기
(4) alt : alternative 대체어
-->
<img src="0109_zebra.jpg" width="100px">
<img src="파일명.jpg" alt="동물이미지">
</body>
</html>
HTML
복사