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