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