-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeading.html
64 lines (56 loc) · 1.39 KB
/
Heading.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heading Formatting Example</title>
<style>
/* CSS for heading formatting */
/* Style for h1 */
h1 {
color: #007bff;
/* Blue color */
font-size: 32px;
font-weight: bold;
}
/* Style for h2 */
h2 {
color: #333;
/* Dark gray color */
font-size: 24px;
}
/* Style for h3 */
h3 {
color: #ff5733;
/* Orange color */
font-size: 20px;
}
/* Style for h4 */
h4 {
color: #666;
/* Medium gray color */
font-size: 18px;
}
/* Style for h5 */
h5 {
color: #9900cc;
/* Purple color */
font-size: 16px;
}
/* Style for h6 */
h6 {
color: #009900;
/* Green color */
font-size: 14px;
}
</style>
</head>
<body>
<h1>This is an h1 Heading</h1>
<h2>This is an h2 Heading</h2>
<h3>This is an h3 Heading</h3>
<h4>This is an h4 Heading</h4>
<h5>This is an h5 Heading</h5>
<h6>This is an h6 Heading</h6>
</body>
</html>