form 태그
<form action="" method="">
- action: 데이터를 전송 할 서버 측 파일 주소
- method: get / post
<fieldset></fieldset>
: 그룹
<legend></legend>
: 그룹의 제목
value는 서버로 전달하는 값
input 태그
<input type="">
- type
text
password
search
url
tel
checkbox
radio
number
range
date
month
week
time
datetime
datetime-local
submit
reset
image
button
file
hidden
**radio 버튼 하나만 선택할 수 있도록 만들려면 name 을 동일하게 해주면 된다.
label 태그
: input 태그의 이름표
<input type="" id="">
<label for=""></label>
여기서 input의 id와 label의 for의 값이 같아야 이어집니다.
select 태그

textarea
: 글 상자
- rows 속성: 행의 수 지정
- cols 속성: 열의 수 지정
form 태그
<form action="" method="">
- action: 데이터를 전송 할 서버 측 파일 주소
- method: get / post
<fieldset></fieldset>
: 그룹
<legend></legend>
: 그룹의 제목
value는 서버로 전달하는 값
input 태그
<input type="">
- type
text
password
search
url
tel
checkbox
radio
number
range
date
month
week
time
datetime
datetime-local
submit
reset
image
button
file
hidden
**radio 버튼 하나만 선택할 수 있도록 만들려면 name 을 동일하게 해주면 된다.
label 태그
: input 태그의 이름표
<input type="" id="">
<label for=""></label>
여기서 input의 id와 label의 for의 값이 같아야 이어집니다.
select 태그

textarea
: 글 상자
- rows 속성: 행의 수 지정
- cols 속성: 열의 수 지정