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