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