-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 2.07 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Text Styling Cheat Sheet</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>CSS Cheatsheet - Text transformation</h1>
<div class="table">
<table>
<tr>
<th>Property Name</th>
<th class="code">Example Syntax</th>
<th>Description</th>
</tr>
<tr>
<td>color</td>
<td class="code">color: #FF0000;</td>
<td>Sets the color of the text.</td>
</tr>
<tr>
<td>font-size</td>
<td class="code">font-size: 16px;</td>
<td>Sets the size of the text.</td>
</tr>
<tr>
<td>font-family</td>
<td class="code">font-family: Arial, sans-serif;</td>
<td>Sets the font family of the text.</td>
</tr>
<tr>
<td>font-weight</td>
<td class="code">font-weight: bold;</td>
<td>Sets the weight of the text.</td>
</tr>
<tr>
<td>text-align</td>
<td class="code">text-align: center;</td>
<td>Sets the alignment of the text.</td>
</tr>
<tr>
<td>text-decoration</td>
<td class="code">text-decoration: underline;</td>
<td>Adds decorations to the text.</td>
</tr>
<tr>
<td>text-transform</td>
<td class="code">text-transform: uppercase;</td>
<td>Transforms the case of the text.</td>
</tr>
<tr>
<td>line-height</td>
<td class="code">line-height: 1.5;</td>
<td>Sets the height of each line of text.</td>
</tr>
<tr>
<td>letter-spacing</td>
<td class="code">letter-spacing: 1px;</td>
<td>Sets the spacing between letters in the text.</td>
</tr>
<tr>
<td>word-spacing</td>
<td class="code">word-spacing: 2px;</td>
<td>Sets the spacing between words in the text.</td>
</tr>
</table>
</div>
</body>
</html>