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