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