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