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