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