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