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