HTML Attributes
- HTML elements는 attributes를 가질 수 있다.
- Attributes는 element에 대한 추가정보를 제공한다.
- Attributes는 항상 start tag에 정의되어야 한다.
- Attributes는 name = “value” 쌍으로 정해줘야 한다.
Attribute Example
- 위의 코드에서 보면 anchor tag로 HTML link가 정의되고 href라는 attribute에 주소가 들어있는 셈
Always Quote Attribute Values
- Attribute value는 항상 따옴표로 감싸져 있어야만 한다.
- 쌍따옴표(double quotation)가 가장 흔하지만 홀따옴표(single quotation)도 가능하다.
- (모두가 아는 팁이지만 single이든 double이든 따옴표 안에 또 따옴표를 쓸 경우에는 다른 종류의 따옴표를 써야 된다.)
HTML Tip: use Lowercase Attributes
- Attributes name와 value는 대소문자를 구분하지 않지만 웹 표준(W3C)에 따라서lowercase를 쓰는 게 좋다.
HTML Attributes Reference
- HTML tag reference를 따라 attribute를 쓰는 것이 좋다.
- Class - Specifies one or more classnames for an element (refers to a class in a style sheet)
- Id - Specifies a unique id for an element
- Style - Specifies an inline CSS style for an element
- Title - Specifies extra information about an element (displayed as a tool tip)
이 외에 global attribute 정보를 얻으려면 http://www.w3schools.com/tags/ref_standardattributes.asp
를 참조하자.
www.w3schools.com