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