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