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