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