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