Tabele html


<table border=2 width=100% cellspacing=5 cellpadding=8 bgcolor=cyan>
<tr><td>one</td></tr>
<tr><td>two</td></tr>
</table>

one
two

1B



<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan>
<tr><td>one</td></tr>
<tr><td>two</td></tr>
<tr><td>three</td></tr>
</table></center>

one
two
three

2



<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td>two</td></tr>
</table>

one two

3



<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td>two</td></tr>
<tr><td>three</td><td>four</td></tr>
</table>

one two
three four

4


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td rowspan=2>two</td></tr>
<tr><td>three</td></tr>
</table>

one two
three

5


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td rowspan=2>one</td><td>two</td></tr>
<tr><td>three</td></tr></table>

one two
three

6


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td>two</td></tr>
<tr><td>three</td><td>four</td></tr>
<tr><td>five</td><td>six</td></tr>
</table>

one two
three four
five six

7


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td>two</td><td>three</td></tr>
<tr><td>four</td><td>five</td></tr</table>

one
two three
four five

7A


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td>two</td><td>three</td></tr>
<tr><td colspan=2 align=center>four</td></tr></table>

one
two three
four

8


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td rowspan=2>two</td><td>three</td></tr>
<tr><td>four</td></tr>
</table>

one
two three
four

9


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td>two</td><td rowspan=2>three</td></tr>
<tr><td>four</td></tr>
</table>

one
two three
four

10


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td rowspan=3 align=center>two</td></tr>
<tr><td>three</td></tr>
<tr><td>four</td></tr>
</table></center>

one two
three
four

11


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td rowspan=3 align=center>one</td><td>two</td></tr>
<tr><td>three</td></tr>
<tr><td>four</td></tr>
</table>

one two
three
four

12


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td>two</td><td rowspan=3 align=center>five</td></tr>
<tr><td>three</td></tr>
<tr><td>four</td></tr>
</table>

one
two five
three
four

13


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td rowspan=3 align=center>two</td><td>three</td></tr>
<tr><td>four</td></tr>
<tr><td>five</td></tr>
</table>

one
two three
four
five

14


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td rowspan=3 align=center>two</td><td>three</td></tr>
<tr><td>four</td></tr>
<tr><td>five</td></tr>
<tr><td colspan=2 align=center>six</td></tr>
</table>

one
two three
four
five
six

15


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td colspan=2 align=center>one</td></tr>
<tr><td>two</td><td rowspan=3 align=center>three</td></tr>
<tr><td>four</td></tr>
<tr><td>five</td></tr>
<tr><td colspan=2 align=center>six</td></tr>
</table>

one
two three
four
five
six

16


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=2>
<tr><td>one</td><td rowspan=3>four</td></tr>
<tr><td>two</td></tr>
<tr><td>three</td></tr>
<tr><td rowspan=2>five</td><td>six</td></tr>
<tr><td>seven</td></tr>
</table>

one four
two
three
five six
seven

16A


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=3>
<tr><td>one</td><td>two</td><td>three</td></tr>
</table>

 

one two three

16B

<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=3>
<tr><td>one</td><td>two</td><td>three</td></tr>
<tr><td>four</td><td>five</td><td>six</td></tr>
</table>

one two three
four five six

17


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=3>
<tr><td>one</td><td>two</td><td>three</td></tr>
<tr><td>four</td><td>five</td><td>six</td></tr>
<tr><td>seven</td><td>eight</td><td>nine</td></tr>
</table>

one two three
four five six
seven eight nine

18


<table border=2 width=50% cellspacing=5 cellpadding=8 bgcolor=cyan cols=3>
<tr><td colspan=3 align=center>one</td></tr>
<tr><td>two</td><td>three</td><td>four</td></tr>
<tr><td>five</td><td>six</td><td>seven</td></tr>
</table>

one
two three four
five six seven

19

By Soryn3ll

 

Vacanta Mare!!!

 

Vacanta Mare !!! :))

Imaginea „http://i16.tinypic.com/6sby7p5.gif” nu poate fi afișată deoarece conține erori.

Tutorial De Instalare
Windows XP

Imaginea „http://i16.tinypic.com/6sby7p5.gif” nu poate fi afișată deoarece conține erori.

ZuMa-Online!



Imaginea „http://i16.tinypic.com/6sby7p5.gif” nu poate fi afișată deoarece conține erori.

http://sportpedia.mysport.ro/images/6/6b/Wwe.jpg

Imaginea „http://i16.tinypic.com/6sby7p5.gif” nu poate fi afișată deoarece conține erori.

SMS-uri De Dragoste

Imaginea „http://i16.tinypic.com/6sby7p5.gif” nu poate fi afișată deoarece conține erori.


 
Score Live - Intra si tu Top66 Statistici Promovare Gratuita - Top123 This website was created for free with Own-Free-Website.com. Would you also like to have your own website?
Sign up for free