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