It is usually used for names and titles.
TABLE HEADING/HEADER
These are set of data handlers that are processed by the dynamic website.
HTML FORMS
The _____________ is composed of rows and columns.
TABLE
It is used to organize the HTML contents with data that have to be arranged.
HTML TABLE
It defines a button.
BUTTON
It is an attribute for the cell span that is equal to more than one column.
COLSPAN
It is used for search fields.
SEARCH
<select>
It is used for input fields that should contain a URL address.
URL
It is used for input fields that should contain a date.
DATE
It defines an option that can be selected or chosen.
<option>
The __________ will not be displayed if the border is not specified.
TABLE BORDER
The characters in ____________ are shown as asterisks or dots in the text field.
PASSWORD TYPE
It will reset all form values to their default values.
RESET
This is the holder of any content inside the table row.
TABLE DATA
It is a form attribute where it is used for multi-line field.
<textarea>
radio
The ____________ can have a color or an image that depends on the web developer themes.
TABLE BACKGROUND
It defines the kind of input it must have. they have a secured way of handling password for sensitive data.
INPUT TYPE
It is the most important element of the form.
<input>
In order to fill the gap of an empty table data, use the ________ and ________ that will set the cell span.
COLSPAN & ROWSPAN
It have different kinds of attributes that define their properties or functions.
FORM ATTRIBUTES
Write the output:
<form>
Name: <input type="text" name="name">
<br><br>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
Answer may vary
Write the output on the board.
<table border="1">
<tr>
<th rowspan="3">FRUITS</th>
<td>Apple</td>
</tr>
<tr>
<td>Mango</td>
</tr>
<tr>
<td>Orange</td>
</tr>
</table>
Answer may vary
It is used to collect information that are typed in appropriate text fields that have specific functions.
FORM ELEMENTS