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