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