HTML Form Tags
양식
<form>: The Form element
form 제출 속성
<form action="제출_URL" method="post" enctype="application/x-www-form-urlencoded">
<label for="name">이름:</label>
<input type="text" id="name" name="name">
<label for="email">이메일:</label>
<input type="email" id="email" name="email">
<button type="submit" value="제출">
</form><button>: The Button element
<input>: The Input (Form Input) element
<label>: The Label element
<select>: The HTML Select element
<fieldset>: The Field Set element
<textarea>: The Textarea element
마무리
참조
Last updated