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