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