본문 바로가기
개발?!/HTML

HTML Attributes

by Harry군 2020. 6. 2.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

HTML Attributes

  • 모든 HTML element는 attribute를 가질 수 있다.
  • Attribute는 element에 대한 추가적인 정보를 제공한다.
  • Attribute는 언제자 start tag안에 명시된다.
  • Attribute는 name="value" 구조를 지닌다.

HTML element attributre

  • href="링크 address"

ex) <ahref="https://www.w3schools.com">This is a link</a>

HTML element attributre

  • src="image의 파일 이름"
<img src="img_girl.jpg">
  • width and height (길이와 높이) 단위는 pixel
<img src="img_girl.jpg" width="500" height="600">
  • alt(이미지가 display 되지 못할때 사용할 대체 문자)
<img src="img_typo.jpg" alt="Girl with a jacket">

HTML <p> element attributre

  • style : element의 color, font, size 등의 styling을 명시
<p style="color:red"> This is a red paragraph.</p>
  • title : paragraph위에 마우스를 올려 놓을때 tooltip으로 표시된다.
<p title="I'm a tooltip">
This is a paragraph.
</p>

 

HTML  <html> element attributre

  • lang : language를 선언
<!DOCTYPE html>

<html lang="en-US">

<body>


...


</body>

</html>

'개발?! > HTML' 카테고리의 다른 글

HTML Links  (0) 2020.06.06