대학원 공부/programming language
HTML : HTML Attribute
월곡동로봇팔
2020. 5. 10. 18:12
HTML's Attribute : Description
Attribute | Description |
alt | Specifies an alternative text for an image, when the image cannot be displayed |
disabled | Specifies that an input element should be disabled |
href | Specifies the URL (web address) for a link |
id | Specifies a unique id for an element |
class | Specifies a unique class for an element |
src | Specifies the URL (web address) for an image |
style | Specifies an inline CSS style for an element |
title | Specifies extra information about an element (displayed as a tool tip) |
alt
alt는 image가 만약 upload가 되지 않을 경우, 그 곳을 다른 문자로 대체할 문자를 alt로 지정해준다
href
href 안에 다른 url을 삽입할 수 있다.
id, class
id, class를 tag에 부여해줌으로써, CSS에서 꾸밀 수 있다.
title
element에 추가적인 정보를 부여함으로써, unique하게 만들 수 있다.
src
image에 src를 부여할 수 있다.