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