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