linking font in html code example
Example 1: how to change font in html
<font face="yourfont">
Lorem Ipsum
</font>
Example 2: how font file link in style tag html
@font-face {
font-family: myFirstFont;
src: url(sansation_light.woff);
}
div {
font-family: myFirstFont;
}