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