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