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