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