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