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