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