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