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