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