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