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