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