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