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