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