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