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