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