-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtablo.html
More file actions
51 lines (49 loc) · 1.82 KB
/
Copy pathtablo.html
File metadata and controls
51 lines (49 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tablo Örneği</title>
</head>
<body>
<h1>Tablo Oluşturma Örneği</h1> <!-- Başlık -->
<table border="6">
<tr>
<td>Ad</td> <!-- Ad Sütun başlığı -->
<td>Soyad</td>
<td>Yaş</td>
<td>Tc</td>
</tr>
<tr>
<td style="color: darkred;">Ahmet</td> <!-- Ad Değeri -->
<td style="color: darkred;">Yılmaz</td>
<td style="color: darkred;">30</td>
<td style="color: darkred;">12345678901</td>
</tr>
<tr>
<td style="color: deepskyblue;">Ayşe</td> <!-- Ad Değeri -->
<td style="color: deepskyblue;">Kara</td>
<td style="color: deepskyblue;">25</td>
<td style="color: deepskyblue;">10987654321</td>
</tr>
<tr>
<td style="color: blueviolet;">Mehmet</td> <!-- Ad Değeri -->
<td style="color: blueviolet;">Demir</td>
<td style="color: blueviolet;">40</td>
<td style="color: blueviolet;">11223344556</td>
</tr>
<tr>
<td style="color: black;">Fatma</td> <!-- Ad Değeri -->
<td style="color: black;">Çelik</td>
<td style="color: black;">35</td>
<td style="color: black;">66554433221</td>
</tr>
</table>
<br> <!-- Yeni tablo -->
<table border="3">
<tr><td style="color: blue;">Ürün: </td><td style="color: brown;">Elma</td><td style="color: brown;">Armut</td><td style="color: brown;">Çilek</td></tr>
<tr><td style="color: blue;">Fiyat</td><td style="color: red;">5 TL</td><td style="color: red;">7 TL</td><td style="color: red;">10 TL</td></tr>
<tr><td style="color: blue;">Stok</td><td style="color: green;">50</td><td style="color: green;">30</td><td style="color: green;">20</td></tr>
</table>
</body>
</html>