## Lecture 1 (13:00) - Tables and Forms Cont. #### Big Tables `` - Table Head `
` - Table Footer ### Forms #### Form Structure Forms require a: - Action attribute - a URL for the page on the server that will receive the form data - Method attribute - usually GET or POST. ```html ``` ```html ``` #### Input - **type** is the control type of the input. - `type="password"` identifies the input would be protected, and plaintext is hidden. - **name** identifies the field in the sent data - **maxlength** limits the character input length #### Text Area ```html ``` #### Radio Buttons ```html ``` - One radial button **must** be checked - Each button in a group should have the same name #### Checkbox ```html ``` - No elements *have* to be checked, but it is good practice. ## Lecture 2 (15:00) #### Drop-Down List ```html ``` - `