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