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