# HTML ile Tablo Oluşturma
HTML'de tablo oluşturmak için `<table>`, `<tr>`, `<th>`, `<td>` gibi etiketler kullanılır. İşte temel bir HTML tablo yapısı:
<!DOCTYPE html>
<html>
<head>
<title>HTML Tablo Örneği</title>
<style>
table {
border-collapse: collapse...