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