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