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