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