국비
온라인강의 5일차
영프로95
2022. 7. 1. 22:53
<div> : 요소들을 구분하기 위한 태그
<table> : 표 요소, Row와 Column의 집합
<p> : pargraph (문단) 을 표현하기 위한 태그
<h> : 제목을 표현하기 위한 태그
<strong>, <b> : 강조하기 위한 태그
<tr> : Table Row ( 행 )
<td> : Table Data ( 열 )
<input>
<div>
<input type="radio" id="huey" name="drone" value="huey" checked>
<label for="huey">Huey</label>
</div>
<div>
<input type="radio" id="dewey" name="drone" value="dewey">
<label for="dewey">Dewey</label>
</div>
<div>
<input type="radio" id="louie" name="drone" value="louie">
<label for="louie">Louie</label>
</div>
위의 html은 drone이라는 그룹에 속해있습니다.
요소를 어떤 요소로 묶어주는걸 Wrapping 이라고 합니다.