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