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