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