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