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