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