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