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