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