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