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