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