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