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