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