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