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