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