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