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