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