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