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