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