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