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


'언어 > HTML' 카테고리의 다른 글

HTML 목록  (0) 2018.12.17
HTML 버튼  (0) 2018.12.17
HTML 링크 입출력  (0) 2018.12.17
HTML 단락  (0) 2018.12.17
HTML 제목  (0) 2018.12.17

HTML 링크

HTML 링크는 <a>태그 로 정의됩니다 .

<a href="https://www.w3schools.com">This is a link</a>
직접 해보기»

링크 대상이 href속성에 지정됩니다 

속성은 HTML 요소에 대한 추가 정보를 제공하는 데 사용됩니다.

속성에 대한 자세한 내용은 이후 장에서 배우게 될 것입니다.


//입력시


<!DOCTYPE html>

<html>

<body>


<h2>HTML Links</h2>

<p>HTML links are defined with the a tag:</p>


<a href="https://www.w3schools.com">This is a link</a>


</body>

</html>



//출력시

HTML Links

HTML links are defined with the a tag:

This is a link        //링크버튼생성 클릭시 넘어감 https://www.w3schools.com


'언어 > HTML' 카테고리의 다른 글

HTML 버튼  (0) 2018.12.17
HTML 이미지  (0) 2018.12.17
HTML 단락  (0) 2018.12.17
HTML 제목  (0) 2018.12.17
HTML 문서  (0) 2018.12.17

HTML 단락

HTML 단락은 <p>태그 로 정의됩니다 .


//입력시


<!DOCTYPE html>

<html>

<body>


<p>This is a paragraph.</p>

<p>This is another paragraph.</p>


</body>

</html>



//출력시 

This is a paragraph.

This is another paragraph

'언어 > HTML' 카테고리의 다른 글

HTML 버튼  (0) 2018.12.17
HTML 이미지  (0) 2018.12.17
HTML 링크 입출력  (0) 2018.12.17
HTML 제목  (0) 2018.12.17
HTML 문서  (0) 2018.12.17

+ Recent posts