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