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