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