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