TIL

Tags In HTML

sweet-po 2023. 7. 5. 17:00

<h1> 제목 </h1>

 

<p class="paragraph"> contents </p> - 하나의 문단 표현

 

div - 한 줄 차지 <div> </div>

span - 컨텐츠 크기만큼 차지 (한 줄이 안되면 그만큼 짧게)

 

<section> - 하나의 구역 구분

 

<img src="http://주소.jpg"> - 닫는 태그 없음

 

<a href="http://주소" target="_blank">링크 걸 이름</a> - target="_blank"는 눌렀을 때 새 탭에서 열리도록

 

<ul> - ul 은 unordered list, ol 은 ordered list

 <li>list1</li>

 <li>list2

   <ul>

    <li>list2-1</li>

   </ul>

  </li>

</ul>

 

<input type="text" placeholder="type here"> - text 치는 란. 기본 보이는 값이 type here

 

체크박스는 여러개 체크 가능

<input type="checkbox" checked> checked - 체크된 체크박스

<input type="checkbox"> unchecked - 체크 안된 체크박스

 

라디오버튼은 여러개중 하나 체크 가능, name이라는 그룹설정을 통해서. a,b 둘중 하나 선택 가능

<div>

 <input type="radio" name="choice" value="a"> a

 <input type="radio" name="choice" value="b"> b

</div>

 

<textarea></textarea> - 글쓸 수 있는 란 나와, 줄바꿈 가능

 

<button>Submit</button> - Submit 버튼 생겨