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