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