Use on the webTotal Use [ 3116 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e92f9b32ad2b8ba7af87e173d6649fff?family=BEST+IN+CLASS+Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/e92f9b32ad2b8ba7af87e173d6649fff?family=BEST+IN+CLASS+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "BEST IN CLASS Regular";
src: url("https://db.onlinewebfonts.com/t/e92f9b32ad2b8ba7af87e173d6649fff.eot");
src: url("https://db.onlinewebfonts.com/t/e92f9b32ad2b8ba7af87e173d6649fff.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e92f9b32ad2b8ba7af87e173d6649fff.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e92f9b32ad2b8ba7af87e173d6649fff.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e92f9b32ad2b8ba7af87e173d6649fff.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e92f9b32ad2b8ba7af87e173d6649fff.svg#BEST IN CLASS Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "BEST IN CLASS Regular";