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