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