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