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