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