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