-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathText.html
More file actions
65 lines (58 loc) · 1.96 KB
/
Copy pathText.html
File metadata and controls
65 lines (58 loc) · 1.96 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Styled Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Text and Font Styling</h1>
</header>
<nav>
<ul>
<li><a href="MusicBlock.html">Back</a></li>
</ul>
</nav>
<div>
<table>
<tr>
<th>color</th>
<th>Sets the color of the text.</th>
</tr>
<tr>
<th>font-family</th>
<th>Specifies the typeface to be used for the text.</th>
</tr>
<tr>
<th>font-size</th>
<th>Sets the size of the font.</th>
</tr>
<tr>
<th>font-weight</th>
<th>Determines the weight (thickness) of characters in text. Common values are normal, bold, bolder, etc.</th>
</tr>
<tr>
<th>font-style</th>
<th>Specifies the font style. Common values are normal, italic, and oblique.</th>
</tr>
<tr>
<th>text-align</th>
<th>Aligns the text in an element. Common values are left, right, center, and justify.</th>
</tr>
<tr>
<th>text-decoration</th>
<th>Adds decoration to text. Common values are none, underline, overline, and line-through.</th>
</tr>
<tr>
<th>text-transform</th>
<th>Controls the capitalization of text. Common values are uppercase, lowercase, and capitalize.</th>
<tr>
<th>line-height</th>
<th>Specifies the amount of space above and below inline elements.</th>
</tr>
</table>
</div>
</body>
</html>