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