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