1. <form>
method | 설명 |
---|---|
get | 입력값이 url로 요청되어 보여짐 |
post | 입력값이 body로 요청되어 정보를 숨겨줌 보안이 필요할 때 사용 ex) 이미지, 게시물, 로그인 등 |
2. <input>
3. <label>
<label> 이름 : <input type="text" name="name"> </label>
<label for="myName">이름 : </label> <input type="text" name="name" id="myName">
<select>
<option>
<form action=""> <label for="myDevice">현재 사용하고 있는 스마트폰의 제조사를 선택해주세요</label> <select name="device" id="myDevice"> <option value="iphone">아이폰</option> <option value="galaxy">갤럭시폰</option> <option value="ㅜㅜ">LG폰</option> </select> </form>
<input>
name VS <option>
value <option value="" selected>선택</option>>
<fieldset>
<legend>
<fieldset>
다음에 설정<button>
<button type="">
<legend> 폼 제목</legend>
<label for="myID">아이디</label>
<input type="text name="아이디" id="MyID">
.
.
.
</fieldset>
<textarea>
<datalist>