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