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