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