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