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