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