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