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