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