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