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