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