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