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