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