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