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