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