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