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