Form Syntax
HTML 的 <form> 是用來收集使用者輸入的資料,在 form 標籤內會包含許多 Form elements,Form elements 是 <input> 標籤下各種不同的type,像是 text, radio, submit 等等,格式如下:
Type | Description |
---|---|
<input type=”text”> | Defines a one-line text input field |
<input type=”radio”> | Defins a radio button (for selecting one of many choices) |
<input type=”submit”> | Defines a submit button (for submitting the form) |