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