css style "font-color" code example
Example 1: text color css
.class {
color: white;
}
Example 2: how to write css in html
<p style="color: blue; font-size: 46px;">
Example 3: text color css
body {
color: blue;
}
h1 {
color: green;
}
Example 4: how to add css to html
<link rel="stylesheet" href="hi.css">
Example 5: text background color css
body {
background-color:rgb(130, 50, 29);
}