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