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