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