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