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