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