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