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