2018. 10. 8. 18:52
XHTML | CSS2
img 요소
src : 이미지의 경로
alt : 이미지의 설명 (스크린리더기에서 설명이 읽힘)
width : 가로값
height : 세로값
title : 말풍선
절대경로 : root에서부터 경로를 찾음.
상대경로 : ./는 현재폴더, ../는 상위폴더
1 2 3 4 5 6 7 8 9 10 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>iframe</title> </head> <body> <img src="./exam_path/image-top.gif" alt="TOP 이미지" width="100" height="100" title="말풍선" /> </body> </html> | cs |
'XHTML | CSS2' 카테고리의 다른 글
목록 요소 (ul, ol, dl) (0) | 2018.10.19 |
---|---|
css2.1 Full property table (0) | 2018.10.09 |
table 만들기 (0) | 2018.10.07 |
html, css 기본 (0) | 2018.10.07 |
문서형 정의 및 선언(DTD), 네임스페이스, meta (0) | 2018.10.07 |