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