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