fieldset: 입력양식 묶음
legend: 입력양식 title
<form>
<fieldset>
<legend>개인 정보</legend>
<label for="name">이름:</label>
<input type="text" id="name" name="name"><br>
</fieldset>
</form>
https://standout.tistory.com/165
데이터를 전송하는 form태그
데이터를 전송하는 form태그 action URL, 어디로 전송할지 method 노출, 값을 보여줄것인지(get,post) enctype 인코딩, 어떻게 전송할지(application/x-www-form-urlencoded, multipart/form-data) 개인 정보 이름:
standout.tistory.com
'HTML·CSS' 카테고리의 다른 글
마우스/키보드를 인식하다, :hover :active :facus (0) | 2023.03.18 |
---|---|
footer에 이용하다, address (1) | 2023.03.18 |
input 속성의 모든 것 (0) | 2023.03.18 |
@media 미디어 쿼리 속성, 장치의 회전 orientation (0) | 2023.03.17 |
말줄임 코드, 영역을 벗어나면 ... 로 (0) | 2023.03.17 |