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