데이터를 전송하는 form태그
action URL, 어디로 전송할지
method 노출, 값을 보여줄것인지(get,post)
enctype 인코딩, 어떻게 전송할지(application/x-www-form-urlencoded, multipart/form-data)
<form action="index.jsp" method="get" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>개인 정보</legend>
<label for="name">이름:</label>
<input type="text" id="name" name="name"><br>
</fieldset>
</form>
'HTML·CSS' 카테고리의 다른 글
input 속성의 모든 것 (0) | 2023.03.18 |
---|---|
@media 미디어 쿼리 속성, 장치의 회전 orientation (0) | 2023.03.17 |
말줄임 코드, 영역을 벗어나면 ... 로 (0) | 2023.03.17 |
어떻게 전송할지 결정하다, enctype (0) | 2023.03.17 |
CSS의 뜻 (0) | 2023.02.27 |