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