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