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