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