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