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