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