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