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