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