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