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