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