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