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