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