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