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