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