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