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