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