TABELA - HTML
Witam. Umiałby ktoś zrobić tabelę tego typu? Chodzi mi o kod HTML a nie rysunek w paincie czy coś... Chcę aby było to napisane w stylu <table><td><tr>x</tr></td></table> Poprostu cały kod html na tabelę tego wyglądu.
(wygląd tabeli jak ma być znajduje się w załączniku)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
<html>
<head>
</head>
<Body>
<table border="5px"width="1000px" height="300px">
<tr>
<td colspan="2">x
</td>
</tr>
<tr>
<td width="20%" border="1" >x
</td>
<td width="80%" border="1" rowspan="3">x
</td>
</tr>
<tr>
<td width="20%" border="1" >x
</td>
</tr>
<tr>
<td width="20%" border="1" >x
</td>
</tr>
</table>
</body>
</html>
Rozmiar zawsze można zmienić =]