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