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