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