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