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