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