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