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