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