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