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