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