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