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