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