Sunday, 27 December 2020

HTML TABLES And FORMS

Table

        Html Table Structure

<table>

                    <tr>

                    <th></th>

                    <Th></Th>

                    </tr>   

                    <tr>

                    <td></td>

                    <td></td>

                    </tr>

                    </table>


<caption> =to add a title to the table

<border> = To add a border to a table

<padding> = Cell padding specifies the space between the cell content and its borders

<rowspan> = To join Tables rows

<colspan> To join Tables columns


FORM


<Form> = The HTML element is used to create an HTML form for user input

<input> = TO get Information From User

<lable> = This element is useful for screen-reader users, 

<input type="radio">Radio buttons let a user select ONE of a limited                                         number of choices.

<input type="checkbox"> user select MORE options of a limited number                                             of choices.

<input type="submit">defines a button for submitting the form                                                         data to a form-handler.

No comments:

Post a Comment