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