html font styles code example
Example 1: css font
@font-face {
font-family: "Name of the font"; /*eg Ubuntu*/
src: url("your/path/to/the.font");
}
p{
font-family: "Ubuntu";
}
Example 2: how to change font colour in html
<font color="red">
Lorem Ipsum
</font>