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