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