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