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