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