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