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