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