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