Light Blue Pointer
본문 바로가기
Developing/TIL(Develop)

Html 속성 Html Attributes

by Greedy 2023. 9. 6.

HTML 속성

  • 모든 HTML 요소는 속성을 가질 수 있다.
  • 속성들은 요소에 대한 추가 정보를 제공한다.
  • 요소들은 항상 시작 태그에 명세된다.
  • 요소들은 항상 이름과 값의 쌍으로 존재한다 name="value"

href 속성

<a> tag 는 하이퍼링크이다.

href 속성은 링크가 가리키는 페이지의 URL 을 나타낸다.

<a href="https://greedydeveloper.tistory.com/">Visit my tistory</a>

 

Visit my tistory

src 속성

<img> 태그는 HTML 페이지에 이미지를 삽입하기 위해 사용된다.

src 속성은 나타낼 이미지의 경로를 기술한다.

<img src="img_girl.jpg">
<!DOCTYPE html>
<html>
<body>

<h2>The src Attribute</h2>
<p>HTML images are defined with the img tag, and the filename of the image source is specified in the src attribute:</p>

<img src="img_girl.jpg" width="500" height="600">

</body>
</html>