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