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