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