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