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