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