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