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