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