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