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