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