Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259

Deprecated: strpos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior in /home/admin/domains/blog.sunucupark.com/public_html/libraries/src/Filesystem/Folder.php on line 259
HTML Örnek Tablo Oluşturma Kodu
Menu

HTML Örnek Tablo Oluşturma Kodu

Html ile tablo oluşturup içerisine verilerimizi yazmak mümkündür.

Aşağıdaki örnek kod ile 2 satır 2 sütundan oluşan örnek bir tablo oluşturulabilir.İhtiyacınıza göre satır ve sütun sayısını kod üzerinden değiştirebilirsiniz.

<tr></tr> etiketleri arasında kalan alan satırımızı oluşturmaktadır. Eğer biz bir tr etiketi daha açarsak 3.satırımıza geçmiş olacağız.

'Hücre 1' , 'Hücre 2' kısmına da tablo içerisindeki verilerimizi yazabiliriz.

 

<table border align="center" BGCOLOR="#FFF">

<tr>

    <td>Hücre 1</td>

    <td>Hücre 2</td>

</tr>

<tr>

    <td>Hücre 3</td>

    <td>Hücre 4</td>

</tr>

</table>