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