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