HTML Tables

HTML tables: how to make, styling, examples and code generator.

 

cell

tr

row

style

code

column

tags

body

make

text

image

generator

header

example

 

How to make HTML table

<table>
    <tr>
        <th>Head cell #1</th>
        <th>Head cell #2</th>
        <th>Head cell #3</th>
    </tr>
    <tr>
        <td>Data cell #1</td>
        <td>Data cell #2</td>
        <td>Data cell #3</td>
    </tr>
    <tr>
        <td>Data cell #4</td>
        <td>Data cell #5</td>
        <td>Data cell #6</td>
    </tr>
</table>

Will generate 3x3 table:

Head cell #1 Head cell #2 Head cell #3
Data cell #1 Data cell #2 Data cell #3
Data cell #4 Data cell #5 Data cell #6

HTML table style

Table color

Table width & height

Table padding

Table background color

Table margin

Centering table

Table color

Table width & height

Table padding

Table background color

Table margin

Centering table

HTML table examples

 

 

 


Write how to improve this page

WEB HTML
RAPID TABLES