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