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