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