HTML 기본 태그 정리

꿀이·2021년 12월 30일
0

div 태그

<div style = "backGround-color:pink;">
  div태그를 쓰면 구역을 나눌 수 있다.
</div>
div태그를 쓰면 구역을 나눌 수 있다.

href 태그

<a href = "http://www.naver.com">href를 사용하면 링크를 걸어 줄 수 있다.</a>

href를 사용하면 링크를 걸어 줄 수 있다.


ul 태그

ul 태그를 이용해서 list를 만들어주는걸 확인할 수 있다. ul 태그는 이 list를 묶어주는 역할은 한다고 생각하자

<ul>
  <li>첫번째</li>
  <li>두번쨰</li>
  <li>세번쨰</li>
</ul>
  • 첫번째
  • 두번쨰
  • 세번쨰

이미지 태그

<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/IU_in_%22Love_Poem%22_Concert_in_Seoul_on_23rd_November_2019.jpg/500px-IU_in_%22Love_Poem%22_Concert_in_Seoul_on_23rd_November_2019.jpg" width = "100" height = "200">

input/button 태그

input/button 태그를 통해서 입력값을 받는 창과 버튼을 생성할 수 있다.

<input type="text" name ="" value="이름">
<input type="password" name ="">
<button>버튼!!</button>
버튼!!
profile
내게 맞는 옷을 찾는중🔎

0개의 댓글