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