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