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