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