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