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