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