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