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