HTML and Css
HTML and Css
HTML and Css
HTML tables allow web developers to arrange data into rows and columns.
Basics Tags
used
Table tags
Td
Tr tags
tags
<table border="">
Example
<thead>
<th>column1</th>
<th>column2</th>
<th>column3</th>
</thead>
<tbody><tr>
<td rowspan="2">row1cell1</td>
<td>row1cell2</td>
<td>row1cell3</td></tr>
</tbody>
<tfoot><tr>
<td colspan="3">row3cell1</td>
</tr></tfoot>
</table>
HTML Form
Forms in HTML are used to collect
user input, which is then sent to a
server for processing. Forms can
contain different types of input
elements such as text fields, submit
checkboxes, radio buttons, buttons,
etc.
Basic tags used
3. HEX Value: Where rr (red), gg (green) and bb (blue) are hexadecimal values between 00 and ff (same
as decimal 0-255).
Example
a:hover {
background-color: yellow;
font-size: 18px;
}
Thank You
!