## 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

Form Controls Appear

``` ```html

Username:

Password

``` #### 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

What did you think of this gig?

``` #### Radio Buttons ```html

Please select your favourite genre:
Rock Rock Rock

``` - One radial button **must** be checked - Each button in a group should have the same name #### Checkbox ```html

Please select your favourite genre:
iTunes Last.fm Spotify

``` - No elements *have* to be checked, but it is good practice. ## Lecture 2 (15:00) #### Drop-Down List ```html

What device do you listen to music on?

``` - `