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