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