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