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