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