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