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