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