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