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