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