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