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