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