Use on the webTotal Use [ 5107 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/be995941e51bb6988f62ab0d4eb71054?family=FiresideChatNF" 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/be995941e51bb6988f62ab0d4eb71054?family=FiresideChatNF);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FiresideChatNF";
src: url("https://db.onlinewebfonts.com/t/be995941e51bb6988f62ab0d4eb71054.eot");
src: url("https://db.onlinewebfonts.com/t/be995941e51bb6988f62ab0d4eb71054.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/be995941e51bb6988f62ab0d4eb71054.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/be995941e51bb6988f62ab0d4eb71054.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/be995941e51bb6988f62ab0d4eb71054.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/be995941e51bb6988f62ab0d4eb71054.svg#FiresideChatNF")format("svg");
}
2CSS rules to specify fonts
font-family: "FiresideChatNF";