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