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