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