-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtablo.html
70 lines (63 loc) · 1.89 KB
/
tablo.html
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="tr">
<head>
<title>Tablo Uygulaması</title>
<meta charset="utf-8"/>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
border: 2px solid;
table-layout: auto;
width: 100%;
box-shadow: 5px 10px #cfcbcb;
}
td, th {
border: 2px solid hsl(0, 8%, 88%);
padding: 8px;
}
#color:hover {
background-color:rgb(105, 162, 108);
color: white;
}
#font-style:hover{
font-style: oblique;
}
#text-align:hover {
text-align: right;
}
#font-family:hover {
font-family: FreeMono, monospace;
}
</style>
</head>
<body>
<table>
<tr>
<th>Özellik</th>
<th>Açıklama</th>
<th>Örnek</th>
</tr>
<tr id="color">
<td>color</td>
<td>Metne renk vermek için kullanılır</td>
<td>color</td>
</tr>
<tr id="font-style">
<td>font-style</td>
<td>Metnin font stilini ayarlamak için kullanılır</td>
<td>oblique</td>
</tr>
<tr id="text-align">
<td>text-align</td>
<td>Metnin yatayda nasıl hizalanacağını belirler</td>
<td>right</td>
</tr>
<tr id="font-family">
<td>font-family</td>
<td>Metin için font ailesini belirlemek için kullanılır</td>
<td>FreeMono, monospace</td>
</tr>
</table>
</body>
</html>