언어/HTML

HTML 이미지

shypang 2018. 12. 17. 17:33


HTML 이미지

HTML 이미지는 <img>태그 로 정의됩니다 .

소스 파일 ( src), 대체 텍스트 ( altwidth, 그리고 height속성으로 제공됩니다

(width,height = 너비,높이)


//입력시


<!DOCTYPE html>

<html>

<body>


<h2>HTML Images</h2>

<p>HTML images are defined with the img tag:</p>


<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">


</body>

</html>



//출력시

HTML Images

HTML images are defined with the img tag:

W3Schools.com