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