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