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