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