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