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